-
Notifications
You must be signed in to change notification settings - Fork 1
/
home.html
39 lines (39 loc) · 1.08 KB
/
home.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Madi Powers</title>
<link rel="stylesheet" href="css/style4.css" />
</head>
<body>
<div class="wrapper">
<header>
<h1 class="h1-header">Madi Powers</h1>
<nav class="nav-list">
<ul>
<li class="nav-item">
<a href="./home.html">Home</a>
</li>
<li class="nav-item">
<a href="./gallery.html">Gallery</a>
</li>
<li class="nav-item">
<a href="./music.html">Music</a>
</li>
<!-- <li class="nav-item">
<a href="./visual-art.html">Visual Art</a>
</li> -->
<li class="nav-item">
<a href="./contact.html">Contact</a>
</li>
<li class="nav-item">
<a href="./references.html">References</a>
</li>
</ul>
</nav>
</header>
<main></main>
</div>
</body>
</html>