-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
35 lines (33 loc) · 1.3 KB
/
Copy pathcontact.html
File metadata and controls
35 lines (33 loc) · 1.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Contact | 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 class="active" href="contact.html">Contact</a>
</nav>
</header>
<main class="contact-main">
<section class="contact-card">
<h1 class="page-title">Contact</h1>
<p>Available for commissions, exhibitions, and collaborations.</p>
<p><a class="contact-link" href="mailto:artist@example.com">artist@example.com</a></p>
<p><a class="contact-link" href="https://instagram.com/artist" target="_blank" rel="noopener noreferrer">Instagram</a></p>
</section>
</main>
<script src="assets/js/main.js"></script>
</body>
</html>