HTML5 Structural Elements

PHOTO EMBED

Wed Aug 03 2022 17:37:09 GMT+0000 (Coordinated Universal Time)

Saved by @madams #markup

<!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>
content_copyCOPY

http://web.simmons.edu/~grovesd/comm244/notes/week3/structural-elements