-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (74 loc) · 1.77 KB
/
index.html
File metadata and controls
81 lines (74 loc) · 1.77 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>BetterClient</title>
<style>
/* Add your custom styles here */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
color: gray;
background-color: gray;
}
header {
background-color: #333;
color: #fff;
padding: 5px;
text-align: center;
}
header h1 {
margin: 0;
}
section {
padding: 5px;
color: white;
}
.mod-list {
list-style: none;
margin: 0;
padding: 0;
color: white;
}
.mod-list li {
margin: 10px 0;
}
.pretty-cool {
list-style: none;
margin: 0;
padding: 0;
color: white;
}
.pretty-cool li {
margin: 10px 0;
}
</style>
</head>
<body>
<header>
<h1>BetterClient</h1>
</header>
<section>
<h3>About Me</h3>
<p>I spent 2 seconds on this website</p>
</section>
<section>
<h3>Minecraft mods</h3>
<ul class="mod-list">
<a href = "https://www.curseforge.com/minecraft/mc-mods/betterparry">BetterParry</a>
<a href = "https://www.curseforge.com/minecraft/mc-mods/optab">OP Tab</a>
<a href = "https://www.curseforge.com/minecraft/mc-mods/maxima">Maxima</a>
<a href = "https://www.curseforge.com/minecraft/mc-mods/snap-tap">Snap Tap</a>
</ul>
<h3>Pretty cool project</h3>
<ul class="pretty-cool">
<a href = "https://betterclient.github.io/z--/index.html">Z-- Compiler</a>
</ul>
</section>
<section>
<h3>Contact Me</h3>
<p>betterclient on discord.</p>
</section>
</body>
</html>