-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.html
More file actions
54 lines (52 loc) · 1.24 KB
/
Copy pathfooter.html
File metadata and controls
54 lines (52 loc) · 1.24 KB
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
<!DOCTYPE html>
<html lang="en">
<body>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>OpenCola</title>
<link rel="stylesheet" href="style.css">
<style>
body {
text-align: center;
font-family: Arial, sans-serif;
}
.header {
margin-top: 50px;
}
.footer {
margin-top: 100px;
font-size: 0.75em;
}
.nav, .bottom-links, .middle-content {
margin-top: 50px;
}
.nav a, .bottom-links a {
margin: 0 15px;
text-decoration: none;
color: black;
}
.disclaimer {
margin-top: 50px;
font-size: 0.75em;
}
/* Style for new middle content */
.middle-content {
font-size: 1em; /* Example font size, adjust as needed */
}
<!-- New section for additional links -->
<div class="bottom-links">
<a href="#">About OpenCola</a> |
<a href="#">FAQ</a> |
<a href="#">Help</a> |
<a href="#">Terms of Service</a> |
<a href="contact.html">Contact Us</a>
</div>
<div class="footer">
© 2024 OpenCola
</div>
<div class="disclaimer">
OpenCola is not affiliated with, maintained, authorized, endorsed, or sponsored by Mojang, Microsoft, or any of their affiliates.
</div>
<script src="main.js"></script>
</body>
</html>