-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path79-footer.html
68 lines (63 loc) · 2.19 KB
/
79-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
<html>
<head>
<link href="https://cdn.jsdelivr.net/gh/rastikerdar/[email protected]/Vazirmatn-font-face.css" rel="stylesheet" type="text/css" />
<!-- Add the link to the font awesome CDN -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<style>
/* Style the footer with a dark background, white text and some padding */
footer {
background-color: #333333;
color: white;
padding: 20px;
}
/* Style the links in the footer with a lighter color */
footer a {
color: #cccccc;
text-decoration: none;
}
/* Add hover effects to the links in the footer */
footer a:hover {
color: #ffffff;
}
/* Style the logo in the footer with a border and some margin */
footer .logo {
border: 1px solid white;
margin: 10px;
}
/* Use flexbox to create a responsive layout for the footer */
footer .container {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
}
/* Use media queries for responsiveness */
@media (max-width: 600px) {
footer .container {
flex-direction: column;
}
}
</style>
</head>
<body>
<!-- Add the footer element with a container div inside -->
<footer>
<div class="container">
<!-- Add the logo image with a link to the home page -->
<a href="index.html"><img src="logo.png" alt="Logo" class="logo"></a>
<!-- Add some links to the footer with a horizontal list -->
<ul style="list-style-type: none; display: flex;">
<li><a href="about.html">About</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<!-- Add some social media icons to the footer with a horizontal list -->
<ul style="list-style-type: none; display: flex;">
<li><a href="#"><i class="fab fa-facebook-f"></i></a></li>
<li><a href="#"><i class="fab fa-twitter"></i></a></li>
<li><a href="#"><i class="fab fa-instagram"></i></a></li>
</ul>
</div>
</footer>
</body>
</html>