-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (42 loc) · 1.44 KB
/
index.html
File metadata and controls
45 lines (42 loc) · 1.44 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
<!DOCTYPE HTML>
<html>
<head>
<title>
Lealon's Swagalicous website
</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!--all content goes here-->
<div id = "all-contents">
<nav>
<h1>Lealon's Swagalicous website</h1>
<ul id="nav-ul">
<li class = "nav-li"><a href = "index.html">Home</a></li>
<li class = "nav-li"><a href = "portfolio.html">Portfolio</a></li>
<li class = "nav-li"><a href = "the-shrine/shrine.html">the shrine...</a></li>
</ul>
</nav>
<main>
<!-- Sidebar section -->
<div class="sidebar">
<img class="sidebar-img" src="images/IMG_5413.jpg">
</div>
<!-- Content section -->
<div class="content">
<h2>Lealon Wolfe</h2>
<p>Student at NHS</p>
<!-- Interests section -->
<div id="interests">
<h3>Interests</h3>
<ul>
<li>music</li>
<li>poetry</li>
<li>coding</li>
</ul>
</div>
</div>
</main>
</div>
</body>
</html>