-
Notifications
You must be signed in to change notification settings - Fork 0
/
template_footer.html
86 lines (81 loc) · 3.88 KB
/
template_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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link
href="https://fonts.googleapis.com/css2?family=Manrope:wght@600;800&family=Playfair+Display:wght@700&display=swap"
rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles/template_footer.css">
<link rel="stylesheet" href="styles/normalize.css">
<link rel="stylesheet" href="styles/template_container-wrapper.css">
</head>
<body>
<footer class="footer">
<div class='container-wrapper'>
<div class="footer__container">
<div class="container__logo">
<div class="footer__logo"><img src="img/icons/template_top-line_logo.svg" alt="logo">Beautyness
</div>
<div class="footer__icons">
<a href="https://www.facebook.com/" target="_blank"><img src="img/icons/footer-FB.svg"
alt="Facebook"></a>
<a href="https://twitter.com/" target="_blank"><img src="img/icons/footer-TW.svg"
alt="Twitter"></a>
<a href="https://www.linkedin.com/" target="_blank"><img src="img/icons/footer-IN.svg"
alt="Linkedin"></a>
<a href="https://www.instagram.com/" target="_blank"><img src="img/icons/footer-Inst.svg"
alt="Instagram"></a>
</div>
</div>
<hr>
<div class="container__menu">
<div class="explore">
<div class="explore__title">Explore</div>
<a href="index.html">Home</a>
<a href="about.html">About Us</a>
<a href="services.html">Services</a>
<a href="#">Appointments</a>
<a href="blog.html">Blog</a>
<a href="contact.html">Contact Us</a>
</div>
<div class="utility">
<div class="utility__title">Utility Pages</div>
<a href="#">Start here</a>
<a href="#">Style guide</a>
<a href="#">404 not found</a>
<a href="#">Password protected</a>
<a href="#">Licenses</a>
<a href="#">Changelog</a>
</div>
<div class="contacts">
<div class="contacts__title">Keep in Touch</div>
<div class="contacts__container">
<div class="contacts__subtitle">
<p>Address : </p>
<p>Mail : </p>
<p>Phone : </p>
</div>
<div class="contacts__data">
<p>24A Kingston St, Los Vegas NC 28202, USA.</p>
<p>[email protected]</p>
<p>(+22) 123 - 4567 - 900</p>
</div>
</div>
</div>
<div class="shedule">
<div class="shedule__title">Working Hours</div>
<p>Mon to Fri: 7am - 6pm</p>
<p>Sat: 9am - 7pm</p>
<p>Sun: 9am - 6pm</p>
</div>
</div>
</div>
</div>
</footer>
<div class="copyright">ⓒ Copyright 2021. Drafted by Victor Themes.</div>
</body>
</html>