avery-sherman-site/contact.html

31 lines
842 B
HTML
Raw Permalink Normal View History

2026-08-18 13:32:31 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact - Avery Sherman</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Avery Sherman</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section>
<h2>Contact Me</h2>
<p>You can reach me at avery.sherman@example.com.</p>
</section>
</main>
<footer>
<p>&copy; 2026 Avery Sherman</p>
</footer>
</body>
</html>