-
Notifications
You must be signed in to change notification settings - Fork 0
/
fontfamily.html
47 lines (41 loc) · 956 Bytes
/
fontfamily.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Challenge: Fancy font families</title>
<style>
#flinstones {
font-family: monospace;
}
#jetsons {
font-family: sans-serif;
}
#addams {
font-family:fantasy ;
}
</style>
</head>
<body>
<p>Some fun theme songs of well known TV families...</p>
<h4>The Flinstones</h4>
<p id="flinstones">
Meet the Flintstones<br>
They're the modern stone age family<br>
From the town of Bedrock<br>
They're a page right of history</p>
<h4>The Jetsons</h4>
<p id="jetsons">
Meet George Jetson,<br>
His Boy Elroy,<br>
Daughter Judy,<br>
Jane, His wife
</p>
<h4>The Addams Family</h4>
<p id="addams">
They're creepy and they're kooky,<br>
mysterious and spooky<br>
They're all together ooky,<br>
the Addams Family
</p>
</body>
</html>