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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Unnamed Group | Games Should be Fun, not Work.</title>
<meta
name="description"
content="We're a community of gamers who enjoy playing games together in a casual and fun manner. Come join the Discord to get involved!"
/>
<meta
name="keywords"
content="unnamed group, unnamed, group, games, gaming, community, discord, memes, fun, casual"
/>
<link rel="icon" href="logo.gif" />
<style>
html {
background: black;
color: white;
font-family: monospace;
}
body {
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
max-width: 400px;
margin: 0 auto;
}
::-webkit-scrollbar {
display: none;
}
main,
header,
footer {
display: flex;
flex-direction: column;
width: 100%;
}
header {
flex-direction: row;
justify-content: space-between;
align-items: center;
}
#logo {
height: 100px;
width: 100px;
}
#socials {
display: flex;
flex-direction: row;
justify-content: center;
gap: 1rem;
margin: 1rem 0;
}
#socials img {
height: 50px;
width: 50px;
}
main p {
font-size: 1.5rem;
text-align: justify;
}
footer {
flex-direction: row;
justify-content: space-between;
}
a {
color: gold;
text-decoration: none;
}
</style>
</head>
<body>
<header>
<img id="logo" src="logo.gif" alt="Unnamed Group logo" />
<div id="socials">
<a href="https://unnamed.group/discord">
<img src="https://cdn.simpleicons.org/discord" />
</a>
</div>
</header>
<main>
<p>
We're a community of gamers who enjoy playing games together in a casual
and fun manner. Come join the Discord to get involved!
</p>
</main>
<footer>
<a
href="https://find-and-update.company-information.service.gov.uk/company/14751183"
>
Est. 2016, Inc. 2023
</a>
<a href="mailto:hello@unnamed.group">hello@unnamed.group</a>
</footer>
</body>
</html>
|