-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
95 lines (85 loc) · 2.59 KB
/
footer.php
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
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<style>
.sosmed {
margin-top: 50px;
}
.sosmed a {
margin: 5px; /*jarak antar elemen*/
position: relative;
display: inline-flex;
align-items: center;
justify-content: center;
width: 50px;
height: 50px;
background: transparent;
border: 2px solid #FF7F50;
border-radius: 50%;
color: #FF4500; /*warna ikon/elemen di dalam buletannya*/
font-size: 25px;
text-decoration: none;
z-index: 1;
overflow: hidden;
transition: 0.5s;
}
.sosmed a:hover {
color: #081b29;
}
.sosmed a::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 0;
height: 100%;
background: #FFA07A; /*warna dalam buletannya pas kursor di arahin*/
z-index: -1;
}
.sosmed a:hover::before {
width: 100%;
transition: 0.5s;
}
.sosmed-title {
margin-bottom: 20px;
margin-left :15px;
}
</style>
<footer style="border-top: 4px solid #ff8680; ">
<div class="container" style="padding-bottom: 50px;">
<div class="row">
<div class="col-md-4" style="margin-top: 20px;">
<h3 style="color: #ff8680; padding-bottom: 20px;"><b>ZOVY WATCH</b></h3>
<p>Jalan Kesuksesan No.1</p>
<p><i class="glyphicon glyphicon-earphone"></i> +6287804616097</p>
<p><i class="glyphicon glyphicon-envelope"></i> [email protected]</p>
</div>
<div class="col-md-4" style="margin-top: 35px;">
<h5 style="padding-bottom: 20px;"><b style="font-size: 18px;">MENU</b></h5>
<p><a href="produk.php" style="color: #000">Produk</a></p>
<p><a href="about.php" style="color: #000">Tentang kami</a></p>
<p><a href="contact.php" style="color: #000">Contact Us</a></p>
</div>
<div class="col-md-4">
<div class="sosmed">
<h4 class="sosmed-title" style="color: #ff8680"><b>FOLLOW US</b></h4>
<a href="https://wa.me/089633451402">
<i class = "fa-brands fa-whatsapp"></i>
</a>
<a href="https://www.instagram.com/zainabaqilah_/">
<i class = "fa-brands fa-instagram"></i>
</a>
<a href="https://www.github.com/zainabaqilah">
<i class = "fa-brands fa-github"></i>
</a>
<a href="https://www.tiktok.com/@itsmejaee1">
<i class = "fa-brands fa-tiktok"></i>
</a>
</div>
</div>
</div>
</div>
<div class="copy" style="background-color: #ff8680; padding: 5px; color: #fff; text-align: center;">
<span>Copyright© ZovyWatch</span>
</div>
</footer>
</body>
</html>