-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex_backup.html
78 lines (70 loc) · 1.41 KB
/
index_backup.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>M3 Org</title>
<style>
body {
background-color: black;
color: lime;
font-family: 'Courier New', monospace;
}
h1 {
text-align: center;
font-size: 48px;
margin-bottom: 20px;
}
ul {
list-style-type: none;
display: flex;
flex-direction: column;
align-items: center;
padding: 0;
}
li {
margin: 5px 0;
}
a {
color: lime;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
footer {
text-align: center;
margin-top: 20px;
}
.banners {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 10px;
}
.banner {
width: 88px;
height: 31px;
background-color: lime;
}
</style>
</head>
<body>
<h1>M3 Org</h1>
<ul>
<li><a href="https://github.com">GitHub</a></li>
<li><a href="#">3D Website</a></li>
<li><a href="https://discord.com">Discord</a></li>
<li><a href="#">Research</a></li>
<li><a href="#">Members</a></li>
<li><a href="#">Images</a></li>
</ul>
<footer>
<div class="banners">
<div class="banner"></div>
<div class="banner"></div>
<div class="banner"></div>
</div>
</footer>
</body>
</html>