-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
83 lines (80 loc) · 2.62 KB
/
index.html
File metadata and controls
83 lines (80 loc) · 2.62 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
80
81
82
83
<!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 Summer 2024</h1>
</div>
<div class="nav">
<a href="index.html"><strong>Home</strong></a> |
<a href="modpack.html">Modpack</a> |
<a href="server.html">Server</a>
</div>
<!-- New middle content section -->
<div class="middle-content" style="text-align: center; width: 50%; margin-left: auto; margin-right: auto; padding: 40px;">
<p>Explore, Build, and Thrive in Our Custom Minecraft World</p>
</div>
<div class="middle-content" style="text-align: center; width: 50%; margin-left: auto; margin-right: auto; padding: 40px;">
<section id="features">
<h2>Our Features</h2>
<ul>
<li>Expansive Mod Pack: Discover over 100+ mods that add new dimensions, biomes, mobs, and blocks to your world.</li>
<li>Community-Driven: Join a vibrant community that shapes the mod pack's future. Share your ideas, creations, and feedback.</li>
<li>Seamless Integration: Easy installation and compatibility with Minecraft servers. Start playing with friends in minutes.</li>
<li>Regular Updates: Stay engaged with frequent updates that introduce new content, improvements, and fixes.</li>
<li></li>
</ul>
</section>
</div>
<!-- New section for additional links -->
<div class="bottom-links">
<a href="about.html">About OpenCola</a> |
<a href="faq.html">FAQ</a> |
<a href="help.html">Help</a> |
<a href="tos.html">Terms of Service</a> |
<a href="mailto:contact@opencolamod.com">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>