forked from codebar/tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample-styled.html
More file actions
57 lines (57 loc) · 2.03 KB
/
Copy pathexample-styled.html
File metadata and controls
57 lines (57 loc) · 2.03 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>
<head>
<title>I love owls</title>
</head>
<body style="font-family: Helvetica, Arial, sans-serif">
<div><img src="images/logo.png"></div>
<h1>Owls...</h1>
<h2>Why do I like owls so much?</h2>
<ul style="list-style-type:none">
<li style="display: inline;"><img src="images/img1.jpg"></li>
<li style="display: inline;"><img src="images/img2.jpg"></li>
<li style="display: inline;"><img src="images/img3.jpg"></li>
</ul>
<ol style="margin-bottom: 20px">
<li><b>they are adorable</b></li>
<li><b>and lovely</b></li>
<li><b>and cuddly</b></li>
</ol>
<div style="display: inline;"><img src="images/img4.jpg"></div>
<div style="display: inline;"><img src="images/img5.jpg"></div>
<div style="margin-top: 20px">
<a href="http://www.youtube.com/watch?v=gBjnfgnwXic">Watch this video here</a>
</div>
<h4>
<i>"A wise old owl sat on an oak; The more he saw the less he spoke; <br>
The less he spoke the more he heard; Why aren't we like that wise old bird?"
</i>
</h4>
<p><small>- nursery rhyme</small></p>
<div style="width: 40%; float:left">
<h3>Owls:</h3>
<p>
Most birds of prey sport eyes on the sides of their heads,<br>
but the stereoscopic nature of <br>
the owl's forward-facing <strong>eyes permits the greater <br>
sense of depth perception </strong>necessary for low-light hunting. <br>
<br>
<a href="http://en.wikipedia.org/wiki/Owl">More information about owls...</a>
</p>
</div>
<div style="width: 30%; display: inline">
<img src="images/img6.jpg">
</div>
<ul style="width: 20%; margin-top: -80px">
<li>
<a href="mailto:social@codebar.io?subject=I love owls :: Codebar">Email us</a>
</li>
<li>
<a href="mailto:?subject=I love owls :: Codebar">Email a friend</a>
</li>
<li>
<a href="https://twitter.com/by_codebar">Twitter</a>
</li>
</ul>
</body>
</html>