-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (32 loc) · 1.05 KB
/
Copy pathindex.html
File metadata and controls
34 lines (32 loc) · 1.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Artist Portfolio</title>
<link rel="stylesheet" href="assets/css/style.css" />
</head>
<body>
<header class="site-header">
<div class="nav-wrap">
<a class="brand" href="index.html">Artist Name</a>
<button class="nav-toggle" data-nav-toggle aria-expanded="false" aria-controls="site-nav">☰</button>
</div>
<nav class="site-nav" id="site-nav" data-nav-menu>
<a href="fiber.html">Fiber Art</a>
<a href="metal.html">Metal Art</a>
<a href="watercolor.html">Watercolor</a>
<a href="cv.html">CV</a>
<a href="contact.html">Contact</a>
</nav>
</header>
<main class="hero">
<div class="hero-content">
<h1>Artist Name</h1>
<p>Fiber art / Metal art / Watercolor</p>
</div>
<div class="scroll-hint">Scroll</div>
</main>
<script src="assets/js/main.js"></script>
</body>
</html>