-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.html
125 lines (119 loc) · 5 KB
/
footer.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!doctype html>
<html lang="en">
<footer class="text-center text-lg-start bg-white text-muted">
<!-- Section: Social media -->
<section class="d-flex justify-content-center justify-content-lg-between p-4 border-bottom bg-dark">
<!-- Left -->
<div class="me-5 d-none d-lg-block">
<span>Get connected with us on social networks:</span>
</div>
<!-- Left -->
<!-- Right -->
<div>
<a href="https://www.facebook.com/PhysicsCode2020" target="_blank" class="me-4 link-secondary">
<i class="fab fa-facebook-f"></i>
</a>
<a href="https://twitter.com/Pauld0051" target="_blank" class="me-4 link-secondary">
<i class="fab fa-twitter"></i>
</a>
<a href="mailto:[email protected]" target="_blank" class="me-4 link-secondary">
<i class="fa-solid fa-envelope"></i>
</a>
<a href="" class="me-4 link-secondary">
<i class="fab fa-instagram"></i>
</a>
<a href="" class="me-4 link-secondary">
<i class="fab fa-linkedin"></i>
</a>
<a href="" class="me-4 link-secondary">
<i class="fab fa-github"></i>
</a>
</div>
<!-- Right -->
</section>
<!-- Section: Social media -->
<!-- Section: Links -->
<section class="bg-light">
<div class="container text-center text-md-start mt-5">
<!-- Grid row -->
<div class="row mt-3">
<!-- Grid column -->
<div class="col-md-3 col-lg-4 col-xl-3 mx-auto mb-4">
<!-- Content -->
<h6 class="text-uppercase fw-bold mb-4">
<i class="fas fa-gem me-3 text-secondary"></i>Physics Code
</h6>
<p>
You've found this site while it is under construction. Feel free to use the socials above to reach out. Tutoring for IB Physics is available, contact via <a href="mailto:[email protected]" target="_blank">email</a>.
</p>
</div>
<!-- Grid column -->
<!-- Grid column -->
<div class="col-md-2 col-lg-2 col-xl-2 mx-auto mb-4">
<!-- Links -->
<h6 class="text-uppercase fw-bold mb-4">
Products
</h6>
<p>
<a href="#!" class="text-reset">Bootstrap</a>
</p>
<p>
<a href="#!" class="text-reset">HTML5</a>
</p>
<p>
<a href="#!" class="text-reset">CSS</a>
</p>
<p>
<a href="#!" class="text-reset">JQuery</a>
</p>
</div>
<!-- Grid column -->
<!-- Grid column -->
<div class="col-md-3 col-lg-2 col-xl-2 mx-auto mb-4">
<!-- Links -->
<h6 class="text-uppercase fw-bold mb-4">
Useful links
</h6>
<p>
<i class="fa-sharp fa-solid fa-graduation-cap"></i>
<a href="mailto:[email protected]" target="_blank" class="text-reset">Tutoring</a>
</p>
<p>
<a href="#!" class="text-reset">More Stuff</a>
</p>
<p>
<a href="#!" class="text-reset">More Stuff</a>
</p>
<p>
<a href="#!" class="text-reset">More Stuff</a>
</p>
</div>
<!-- Grid column -->
<!-- Grid column -->
<div class="col-md-4 col-lg-3 col-xl-3 mx-auto mb-md-0 mb-4">
<!-- Links -->
<h6 class="text-uppercase fw-bold mb-4">Contact</h6>
<p><i class="fas fa-home me-3 text-secondary"></i> Stockholm, Sweden
</p>
<p><i class="fa-solid fa-envelope"></i>
<a href="mailto:[email protected]"> [email protected]</a>
</p>
<p><i class="fas fa-phone me-3 text-secondary"></i> Not Yet
</p>
</div>
<!-- Grid column -->
</div>
<!-- Grid row -->
</div>
</section>
<!-- Section: Links -->
<!-- Copyright -->
<div class="text-center p-4" style="background-color: rgba(0, 0, 0, 0.025);">
<p>Copyright © 2022 Physics Code All Rights Reserved</p>
<script type="text/JavaScript"> let theDate = new Date().getFullYear();
document.getElementById("getDate").innerHTML = theDate;
</script>
</div>
<!-- Copyright -->
</footer>
</html>