-
-
Notifications
You must be signed in to change notification settings - Fork 242
/
Copy pathexample.html
69 lines (61 loc) · 1.78 KB
/
example.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>I love owls</title>
</head>
<body>
<div>
<!-- Note to self: this is where the header goes -->
<div>
<img src="images/logo.png" alt="codebar.io" />
</div>
<h1>Owls</h1>
<p>
Most birds of prey sport eyes on the sides of their heads,
but the stereoscopic nature of
the owl's forward-facing <strong>eyes permits the greater
sense of depth perception</strong> necessary for low-light hunting.
</p>
<a href="https://en.wikipedia.org/wiki/Owl">More information about owls...</a>
</div>
<h2>Why do I like owls so much?</h2>
<ul>
<li><img src="images/img1.jpg" alt="adorable"></li>
<li><img src="images/img2.jpg" alt="lovely"></li>
<li><img src="images/img3.jpg" alt="cuddly"></li>
</ul>
<ol>
<li>they are adorable</li>
<li>and lovely</li>
<li>and cuddly</li>
</ol>
<div>
<a href="https://www.youtube.com/watch?v=gBjnfgnwXic">
<img src="images/img4.jpg" alt="cute owl">
<img src="images/img5.jpg" alt="another cute owl">
<br>
Watch the video
</a>
</div>
<div>
<p>
<strong>
"The Owl & the Pussy-cat went to sea <br>
In a beautiful pea-green boat"
</strong>
</p>
<small>— nursery rhyme</small>
</div>
<ul>
<li>
<a href="mailto:[email protected]?subject=I%20love%20owls%20::%20codebar">Email us</a>
</li>
<li>
<a href="mailto:?subject=I%20love%20owls%20::%20codebar">Email a friend</a>
</li>
<li>
<a href="https://twitter.com/home?status=I love owls! via @codebar">Share your love of owls on twitter</a>
</li>
</ul>
</body>
</html>