-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.html
62 lines (53 loc) · 1.08 KB
/
test.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
}
footer {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
.footer-menu {
list-style: none;
padding: 0;
display: flex;
justify-content: center;
}
.footer-menu li {
margin: 0 15px;
}
.footer-menu a {
text-decoration: none;
color: #fff;
}
@media (max-width: 768px) {
.footer-menu {
flex-direction: column;
text-align: center;
}
.footer-menu li {
margin: 10px 0;
}
}
</style>
</head>
<body>
<!-- Your website content goes here -->
<footer>
<ul class="footer-menu">
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Contact</a></li>
</ul>
<p>© 2023 Your Company</p>
</footer>
</body>
</html>