-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (45 loc) · 1.41 KB
/
index.html
File metadata and controls
49 lines (45 loc) · 1.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>bogo</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
font-size: 14pt;
line-height: 1.6;
padding: 2rem;
max-width: 600px;
margin: 0 auto;
}
p,span {
margin-bottom: 20px;
color:rgb(77, 77, 77);
}
a {
text-decoration: underline;
font-weight: bold;
color:rgb(41, 41, 104);
}
a:hover {
text-decoration: none;
}
</style>
</head>
<body>
<ul>
<p><span>I love to make websites!!</span></p>
<p>My first website was a <a href="/zakflash">Flash games site!</a></p>
<p>Then, Flash died and I was so sad about it that I made <a href="https://www.wickeditor.com/">Wick Editor</a>!</p>
<p>Nowadays I make websites and apps for a company.</p>
<p>...but I'm also working on a <span style="font-weight: bold;">Secret Third Website</span> that will be released this summer!</p>
</ul>
<a href="https://github.com/bogoddr">GitHub</a> / Discord: bogo.ddr</p>
</body>
</html>