-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
122 lines (120 loc) · 2.41 KB
/
index.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
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
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=0.86, maximum-scale=5.0, minimum-scale=0.86"
/>
<link
rel="apple-touch-icon"
sizes="180x180"
href="/apple-touch-icon.png?v=4"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/favicon-32x32.png?v=4"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/favicon-16x16.png?v=4"
/>
<link rel="manifest" href="/site.webmanifest?v=4" />
<link rel="shortcut icon" href="/favicon.ico?v=4" />
<meta name="msapplication-TileColor" content="#b91d47" />
<meta
name="msapplication-TileImage"
content="/mstile-144x144.png?v=4"
/>
<meta name="theme-color" content="#ffffff" />
<title>Home | Edazpotato</title>
<style>
body {
font-family: sans-serif;
margin: 40px auto;
max-width: 650px;
line-height: 1.6;
font-size: 18px;
color: #444;
padding: 0 10px;
background-color: #eeeeee;
}
h1,
h2,
h3,
h4,
h5 {
line-height: 1.2;
}
</style>
</head>
<body>
<h4>
By using this website you agree to my
<a href="policies/#policy" target="_blank">Policy policy</a>
</h4>
<header>
<h1>Edazpotato</h1>
<p>I write code and play games.</p>
</header>
<main>
<p>Follow my social medias please. Thanks.</p>
<ul>
<li>
Tweeter:
<a
href="https://twitter.com/intent/follow?screen_name=edazpotato"
rel="noopener"
target="_blank"
>@Edazpotato</a
>
</li>
<li>
Discord:
<a
href="https://discord.gg/mzR7eeZ"
rel="noopener"
target="_blank"
>Edaz#5671 (569414372959584256)</a
>
</li>
<li>
Youtoobe:
<a
href="https://www.youtube.com/channel/UCK1ME1J0XNbN31bCOV9UjKw?sub_confirmation=1"
rel="noopener"
target="_blank"
>Edazpotato</a
>
</li>
</ul>
</main>
<footer>
<p>Here are some links:</p>
<nav>
<ul>
<li>
<a href="policies/">Policies</a>
(cookies, data, privacy, etc)
</li>
<li>
<a href="datapacks/">Datapacks</a> (For Minecraft: Java
Edition)
</li>
<li>
<a href="attic/">My Attic</a> - Random side projects and
tests
</li>
<li>
<a href="old/">Old websites</a> - All the old versions
of this website
</li>
</ul>
</nav>
</footer>
</body>
</html>