You are on page 1of 1

<!

DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Our Family Website</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#news">Family News</a></li>
<li><a href="#calendar">Calendar of Events</a></li>
<li><a href="#gallery">Photo Gallery</a></li>
<li><a href="#directory">Family Directory</a></li>
</ul>
</nav>
</header>
<main>
<section id="news">
<h2>Family News</h2>
<!-- Add news articles here -->
</section>
<section id="calendar">
<h2>Calendar of Events</h2>
<!-- Add calendar here -->
</section>
<section id="gallery">
<h2>Photo Gallery</h2>
<!-- Add photo gallery here -->
</section>
<section id="directory">
<h2>Family Directory</h2>
<!-- Add family directory here -->
</section>
</main>
<footer>
<p>&copy; 2023 Our Family Website</p>
</footer>
</body>
</html>

You might also like