<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Chili Recipe</title>
</head>
<body>
<h1>Recipe Book</h1>
<nav>
<ul>
<li><a href="recipes.html">Recipes</a></li>
<li><a href="tips.html">Tips</a></li>
<li><a href="about.html">About</a></li>
</ul>
</nav>
<main>
<h2>Recipe for Chili</h2>
<p>Instructions...</p>
</main>
<footer>Copyright, me</footer>
</body>
</html>