-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (56 loc) · 1.5 KB
/
index.html
File metadata and controls
65 lines (56 loc) · 1.5 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
<head>
<title>spiders are fun</title>
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<link rel="apple-touch-icon" href="./icon-180.png" />
<link rel="icon" sizes="192x192" href="./icon-192.png" />
<link
href="https://fonts.googleapis.com/css?family=Roboto:400,700"
rel="stylesheet"
/>
</head>
<body>
<h1>You Won't</h1>
<ul>
<li><a href="https://werewolf.spiders.fun">werewolf</a></li>
<li>
<a href="https://lg.spiders.fun">lunch games</a>
</li>
<li><a href="http://family.spiders.fun">family</a></li>
<li><a href="https://onitama.spiders.fun">onitama</a></li>
</ul>
<style>
html {
font-family: 'Roboto', sans-serif;
box-sizing: border-box;
}
* {
margin: 0;
padding: 0;
}
body {
max-width: 16em;
margin: 2em auto;
text-align: center;
}
ul {
margin-top: 1em;
}
li {
list-style: none;
}
li + li {
margin-top: 1em;
}
a {
font-weight: bold;
color: black;
}
</style>
</body>