-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (36 loc) · 807 Bytes
/
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title>Has Chris got a job yet?</title>
<style>
body {
margin: 0;
padding: 0;
color: #202020;
font-family: Arial, Helvetica, sans-serif;
text-align: center;
}
.answer {
padding-top: 2%;
font-size: 20vw;
}
.quip {
margin-top: 0;
color: #404040;
font-size: 1.5vw;
}
</style>
</head>
<body>
<main>
<h1 class="answer">Yes</h1>
<p class="quip">He's Hero of Socialist Labor</p>
</main>
</body>
</html>