-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcss.html
66 lines (50 loc) · 1.32 KB
/
css.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Ode to Chocolate</title>
<head>
<style>
body {
background-color: brown;
}
h1 {
color: white;
text-decoration: underline;
}
h2, h3, p {
color: yellow;
}
p, li {
font-size: 24px;
font-family: cursive;
}
.almond {
color: white;
}
.butterfinger {
color: orange;
}
.ferrero {
color: gold;
}
.all {
color: blue;
}
</style>
</head>
</head>
<body>
<h1>An Ode to Chocolate</h1>
<h2>A Chocolatey Reflection</h2>
<p>I love chocolate soooooo much. If I could, I would eat chocolate every single day, every single hour, every single second. I am so obsessed about chocolate that I dream about it every single night. People tell me I have a problem, but I say, "How can chocolate be a problem? Chocolate IS the ANSWER."</p>
<img src="https://images.unsplash.com/photo-1511381939415-e44015466834?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=600" alt="Several Pieces of Chocolate">
<h2>Favorite Chocolates</h2>
<ul>
<li class="almond">Almond Joy</li>
<li class="butterfinger">Butterfinger</li>
<li class="ferrero">Ferrero Rocher</li>
<li class="all">But I also love all kinds.</li>
</ul>
</body>
</html>