-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample-text.html
69 lines (59 loc) · 1.64 KB
/
example-text.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
67
68
69
<!DOCTYPE html>
<html>
<head>
<title>Text</title>
<style type="text/css">
body {
padding: 20px;
}
h1,h2, h3, a {
font-weight: normal;
color: #0088dd;
margin: 0px;
}
h1 {
font-family: Georgia, Times, serif;
font-size: 250%;
text-shadow: 2px 2px 3px #666666;
padding-bottom: 10px;
}
h2 {
font-family: "Gill Sans", Arial, sans-serif;
font-size: 90%;
text-transform: uppercase;
letter-spacing: 0.2em;
}
h3 {
font-size: 150%;
}
p {
font-family: Arial, Verdana, sans-serif;
line-height: 1.4em;
color: #665544;
}
p.intro:first-line {
font-weight: bold;
}
.credits {
font-style: italic;
}
a {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<h1>Briards</h1>
<h2>A Heart wrapped in fur</h2>
<p class="intro">The <a class="breed" href="#yeah">briard</a>, or berger de brie, is a large breed of dog traditinally used as herder and guardian of sheep.</p>
<h3>Breed History</h3>
<p>The briard, whic is believed to have originated in France, has been bred for centuries to herd and to protect sheep. The breed was used by the French Army sentries, messenger and to search for wounded soldiers because of its fine sense of hearing. Briards were used in the First World War almost to the point of extinction. Currently th
e population of briards is slowly recovering.
Charlemagne, Napoleon, Thomas Jefferson and Lafayette all owned briards
</p>
<p class="credits">by Ivy Duckett</p>
</body>
</html>