Skip to content

Commit 4b5e124

Browse files
authored
Create index.html
1 parent 64292e4 commit 4b5e124

File tree

1 file changed

+61
-0
lines changed

1 file changed

+61
-0
lines changed

games/index.html

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Bloxcraft UBG</title>
6+
<style>
7+
body {
8+
margin: 0;
9+
font-family: Arial, sans-serif;
10+
}
11+
12+
.navbar {
13+
background-color: #000;
14+
overflow: hidden;
15+
padding: 10px 20px;
16+
}
17+
18+
.navbar a {
19+
float: left;
20+
color: #fff;
21+
text-align: center;
22+
padding: 10px 16px;
23+
text-decoration: none;
24+
font-size: 17px;
25+
transition: background 0.3s;
26+
}
27+
28+
.navbar a:hover {
29+
background-color: #444;
30+
}
31+
32+
.content {
33+
background-color: #ddd;
34+
padding: 40px 20px;
35+
color: #333;
36+
}
37+
body {
38+
background-color: #5555FF; /* black background */
39+
margin: 0;
40+
font-family: Arial, sans-serif;
41+
color: #fff; /* white text for contrast */
42+
padding: 20px;
43+
}
44+
</style>
45+
</head>
46+
<body>
47+
48+
<div class="navbar">
49+
<a href="/">Home</a>
50+
<a href="/games">Games</a>
51+
<a href="https://discord.gg/a65hcbpfct">Discord Server</a>
52+
<a href="https://docs.google.com/document/d/1UC3Eo6UoPCVlq1SiOFEj0HahQGPqqbadXSho5NKHbQU/edit?tab=t.0">Bloxcraft Unblocked Games List</a>
53+
</div>
54+
55+
</body>
56+
</html>
57+
58+
59+
60+
61+

0 commit comments

Comments
 (0)