-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
89 lines (76 loc) · 1.97 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>sam.life</title>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<style>
body {
padding: 16px;
font-family: "PostGrotesk-Book", -apple-system, BlinkMacSystemFont,
"Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji",
"Segoe UI Emoji", "Segoe UI Symbol";
-webkit-font-smoothing: antialiased;
}
div#sam {
width: 100px;
height: 100px;
border-radius: 50%;
margin: 0 auto;
background: url("sam.jpg");
background-size: contain;
}
h1 {
margin-bottom: 16px;
text-align: center;
}
h2 {
margin-bottom: 48px;
font-size: 16px;
text-align: center;
color: #999;
}
ul {
list-style-type: none;
margin: 0 auto;
padding: 0;
max-width: 600px;
}
li {
margin-bottom: 28px;
padding-bottom: 28px;
border-bottom: 1px solid;
font-style: italic;
}
</style>
</head>
<body>
<div id="sam"></div>
<h1>sam.life</h1>
<h2>Classic Sam</h2>
<ul id="sams">
<li>
"Fuck yes. I've got a website."
</li>
<li>
"(Holds biscuit over tea) This is an independent creator (lifts biscuit)
and this is a platform (lifts tea). (Dips biscuit into tea) And this is
J**K."
</li>
<li>
"I woke up this morning and thought it was Saturday."
</li>
<li>
"I had a really big sneeze this morning."
</li>
<li>
"Got to talk to Mo about dilapidations."
</li>
<li>
"Oh! I was <b>multiplying</b> by 60 instead of <b>dividing</b> by 60."
</li>
</ul>
</body>
</html>