-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
48 lines (42 loc) · 919 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
44
45
46
47
48
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Emily Is the Bestest</title>
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="./style.css" rel="stylesheet">
</head>
<style>
html {
background: url('http://www.stickerpacks.multiverso.de/img/fat-unicorn/Happy.gif');
background-repeat: no-repeat;
background-size: cover;
background-color: #d802f54a;
color: #ffff;
}
h1 {
font-size: 10em;
}
p {
font-size: 3em;
}
li {
font-size: 3em;
}
body {
padding: 50px;
}
</style>
<body>
<h1>Emily is the best!</h1>
<p>Allow me to tell you all the reasons why emily rocks:</p>
<ul>
<li>She's awesome</li>
<li>Tolerates us</li>
<li>Fixes things</li>
<li>Has a 'mini-me'... thanks KB!</li>
<li>Is teaching us things!</li>
</ul>
</body>
</html>