-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.html
More file actions
84 lines (77 loc) · 2.12 KB
/
server.html
File metadata and controls
84 lines (77 loc) · 2.12 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
84
<!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>
<div class="middle-content" style="text-align: center; width: 50%; margin-left: auto; margin-right: auto; padding: 40px;">
<div class="card">
<h2>ip: opencolamod.com</h2>
</div>
</div>
<div class="middle-content" style="text-align: center; width: 50%; margin-left: auto; margin-right: auto; padding: 40px;">
<div class="card">
<h2>Server Status</h2>
</div>
<div id="rest">Loading ...</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
</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>