-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
78 lines (61 loc) · 1.75 KB
/
index.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
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html>
<head>
<title>About Me</title>
<!-- <link rel="stylesheet" href="resources/layout.css" type="text/css"> -->
<!-- <script src="resources/javascript.js" type="text/javascript" charset="utf-8"></script> -->
</head>
<body>
<div id="header" class="content">
<h1>About Me</h1>
<p>
My name is <a href="http://eliriveire.com">Eli</a> and I'm 27.
</p>
</div>
<div class="content clearfix">
<!-- Page Navigation -->
<div id="nav">
<img src="us.jpg">
<h2>Contents</h2>
<ul>
<li>Projects</li>
<li>Hobbies</li>
<li>Fun Facts</li>
</ul>
</div>
<!-- Main content area -->
<div id="main">
<h2 id="projects">Projects</h2>
<h3>Library</h3>
<p>Elibrarian and adult programming.</p>
<h3>garden</h3>
<p>flowers, plants, vegetables</p>
<h2 id="hobbies">Hobbies</h2>
<h3>Reading</h3>
<p>It's fun!</p>
<ul>
<li>Comics</li>
<li>YA</li>
<li>Nonfiction</li>
</ul>
<h3>Cycling</h3>
<p>Healthy for me and for the environment</p>
<ul>
<li>Commuting</li>
<li>Joyriding</li>
<li>Racing</li>
</ul>
<h2 id="fun-facts">Fun Facts</h2>
<h3>I'm weird</h3>
<ul>
<li>I've had 20 teeth pulled</li>
<li>I'm vegan</li>
<li>I'm getting married in October</li>
</ul>
</div>
</div>
<div id="copyright" class="content">
© 2013 Eli Riveire, All Rights Reserved.
</div>
</body>
</html>