-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.html
More file actions
50 lines (49 loc) · 1.03 KB
/
Copy pathheader.html
File metadata and controls
50 lines (49 loc) · 1.03 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
<!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">Server</a>
</div>
</body>
</html>