31 lines
1005 B
HTML
31 lines
1005 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>About - 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>About Me</h2>
|
|
<p>I am a 30-year-old office administrator and first-line supervisor from Mount Joy, Pennsylvania. I have a passion for Ansel Adams-inspired photography and garden-to-table cooking. I also enjoy running and softball.</p>
|
|
</section>
|
|
</main>
|
|
<footer>
|
|
<p>© 2026 Avery Sherman</p>
|
|
</footer>
|
|
</body>
|
|
</html> |