-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
44 lines (43 loc) · 1.44 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
<!DOCTYPE html>
<html>
<header>
<title>About Me</title>
<link href="main.css" type="text/css" rel="stylesheet" />
</header>
<body>
<h1>Henrique J. Oliveira</h1>
<hr>
<div class="content">
<div class="questions">
<h3>Questions</h3>
<ul>
<li>Do I have any pets?</li>
<li>Do I live in Oregon?</li>
<li>Am I a musician?</li>
<li>Do I like tacos?</li>
<li>Do I like video games?</li>
<li>How many times have I moved?</li>
<li>Can you guess one of my favorite foods?</li>
</ul>
</div>
<div class="about-me">
<h3>About Me</h3>
<img src="me.jpg" alt="henry" />
<p>Hello! My name is Henrique, welcome to my site, now stick around and see if you can answer some questions about me! Thanks for playing and I hope you enjoy!</p>
</div>
<div class="bands">
<h3>Some bands I like</h3>
<ol>
<li>Bright Eyes</li>
<li>blink-182</li>
<li>The Story So Far</li>
<li>Jimmy Eat World</li>
<li>Elliott Smith</li>
<li>Neck Deep</li>
<li>Fall Out Boy</li>
</ol>
</div>
</div>
<script src="app.js"></script>
</body>
</html>