-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCSSActivity.html
More file actions
27 lines (23 loc) · 1.37 KB
/
CSSActivity.html
File metadata and controls
27 lines (23 loc) · 1.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>List</title>
<style>
/* CSS */
#intro a { color: red; }
#guideline a { color: #00FF00; }
#intro blockquote a { font-weight: bold; }
#intro > a { font-size: large; }
body > * { margin-left: 20px; }
p * { text-decoration: underline; }
</style>
</head>
<body>
<h1>Books</h1>
<ol>
<section id="intro">Welcome to <a href="#palaceland">PalaceLand</a>, world renown <q>Land of endless palaces and <a href="#delight">delights</a></q>. As you make your way about, remember the words of our founder <blockquote>Shouldn't we have <a href="#chairs">chairs</a>? Never made much sense wandering room a room looking for a place to sit a spell. Folk that don't sit are not likely all right in the <a href="#head">head</a></blockquote></section>
<section id="guideline">There are guidelines to follow while in <a href="#palaceland">PalaceLand</a>. They are outlined on the back of your <q>Daring Footman <a href="#trademark">(tm)</a></q> card. But the spirit of the guidelines are best summed up by our founder <blockquote>Don't just <a href="#standthere">stand there</a> with your mouth hanging open waiting for a pair of nesting birds.</blockquote> (and no <a href="#camera_policy">flash photography</a> please.)</section>
</ol>
</body>
</html>