Skip to content

Instantly share code, notes, and snippets.

@kccnma
Last active March 5, 2024 00:05
Show Gist options
  • Save kccnma/99c86b91737ca8b690a808c4b8804d87 to your computer and use it in GitHub Desktop.
Save kccnma/99c86b91737ca8b690a808c4b8804d87 to your computer and use it in GitHub Desktop.
Summer Favorites Site - Structural Markup
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Summer Site 2019</title>
<meta name="description" content="This is my Summer 2019 Web Design Fun website">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="css/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<header>
<h1><a href="index.html">JD</a></h1>
</header>
<main>
<section>
<h2>Summer 2019</h2>
<p>I created this site as part of my summer project at Iolani. Within it, you will find lists of my summer
favorites along with resources from my summer web design class.</p>
</section>
<section>
<h3>Movies</h3>
<p>Favorite movies of 2019</p>
<ul>
<li>Lorem ipsum</li>
<li>Et dolorem</li>
<li>Adipiscing Elit</li>
</ul>
</section>
</main>
<footer>
</footer>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment