-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (35 loc) · 1.23 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
<!DOCTYPE html>
<html>
<head>
<title>Joshua's First Website</title>
<link rel="stylesheet" type="text/css" href="mystyle.css"> </link>
</head>
<body>
<div id="all-contents">
<nav>
<header>Joshua's First Website</header>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
</ul>
</nav>
<main>
<div class="sidebar">
<img src="https://media.giphy.com/media/3o7aDee5RyONByAZ1K/giphy.gif">
</div>
<div class="content">
<header>Joshua Anderson</header>
<p>Student at Hahnville High</p>
<section class="interests">
<header>Interests</header>
<ul>
<li>Video Games</li>
<li>Creating new things</li>
<li>Hanging out with my friends</li>
</ul>
</section>
</div>
</main>
</div>
</body>
</html>