-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (56 loc) · 1.07 KB
/
index.html
File metadata and controls
57 lines (56 loc) · 1.07 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
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Colored Poem</title>
<style>
p {
font-weight: bold;
}
.green {
background: green;
}
.class_yellow {
background: yellow;
}
.class_red {
background: red;
}
#id_font-color-red{
color: red
}
#id_font-color-yellow{
color: yellow
}
#id_font-color-green{
color: green
}
button {
color: blue;
font-style: italic;
font-weight: bold;
font-size: 75px;
border: 5px solid grey;
border-radius: 20px
}
br {
font-size: 60px
}
</style>
</head>
<body>
<p style="font-size: 105px" class="green" id="id_font-color-red">Roses</p>
<br>
<p style="font-size: 95px" class="class_red" id="id_font-color-yellow"><i>are</i></p>
<br>
<p style="font-size: 85px">red,</p>
<br>
<p style="font-size: 75px"><i>My name</i></p>
<br>
<p style="font-size: 65px">is Dave.</p>
<br>
<p style="font-size: 55px"><i>This poem makes no sense.</i></p>
<br>
<button> Microwave!</button>
</body>
</html>