-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
79 lines (68 loc) · 1.73 KB
/
Copy pathcontact.html
File metadata and controls
79 lines (68 loc) · 1.73 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<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 */
}
</style>
</head>
<body>
<div class="header">
<img src="opencola-logo.png" alt="OpenCola logo" width="100" height="100" />
<h1>Coming March 2024</h1>
</div>
<div class="nav">
<a href="index.html">Home</a> |
<a href="modpack.html">Modpack</a> |
<a href="server.html"><strong>Server</strong></a>
</div>
<link href="contact-form.css" rel="stylesheet">
<div class="middle-content">
<a href="mailto:contact@opencolamod.com">Send Email to contact@opencolamod.com</a>
</div>
<!-- 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 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>