forked from beast-codez/Project-K
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter2.html
122 lines (111 loc) · 3 KB
/
footer2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Footer with Curved Design</title>
<script src="https://kit.fontawesome.com/d70dca505b.js" crossorigin="anonymous"></script>
<style>
body {
margin: 0;
font-family: sans-serif;
}
footer {
background-color: #1a252f;
color: #fff;
padding: 50px 0;
position: relative;
overflow: hidden; /* Hide the overflow for the curve effect */
}
.footer-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
.footer-section {
width: 25%;
margin-bottom: 30px;
}
.footer-section h3 {
font-size: 1.2em;
margin-bottom: 20px;
}
.footer-section ul {
list-style: none;
padding: 0;
}
.footer-section li {
margin-bottom: 10px;
}
.footer-section a {
color: #fff;
text-decoration: none;
}
.footer-section a:hover {
text-decoration: underline;
}
/* Curved design at the top */
footer::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100px;
background-color: #fff;
border-radius: 0 0 50% 50%;
transform: translateY(-50%);
}
.footer-section ul li i{
padding: 4px;
margin-right: 10px;
}
.footer-section ul li:hover{
scale: 1.05;
transition: all ease-in 0.2s;
}
.footer-section{
}
</style>
</head>
<body>
<footer>
<div class="footer-content">
<div class="footer-section">
<h3>About Us</h3>
<p>We are here to connect you with our qualified doctors present at the health centre in our college.</p>
</div>
<div class="footer-section">
<h3>Quick Links</h3>
<ul>
<li><a href="#">About Us</a></li>
<li><a href="#">Find a Doctor</a></li>
<li><a href="#">Book an Appointment</a></li>
<li><a href="#">look for a blood group</a></li>
<li><a href="#">Career</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Contact</h3>
<ul>
<li>Health Connect</li>
<li><i class="fa-solid fa-location-dot"></i>IIITA , admin block</li>
<li><i class="fa-solid fa-phone"></i>888-2-666</li>
<li><i class="fa-solid fa-envelope"></i>[email protected]</li>
<li><i class="fa-solid fa-envelope"></i>[email protected]</li>
</ul>
</div>
<div class="footer-section">
<h3>Follow Us on</h3>
<ul>
<li><a href="#"><i class="fa-brands fa-instagram"></i>Instagram</a></li>
<li><a href="#"><i class="fa-brands fa-facebook"></i>Facebook</a></li>
<li><a href="#"><i class="fa-brands fa-linkedin"></i>LinkedIn</a></li>
</ul>
</div>
</div>
</footer>
</body>
</html>