Skip to content

Instantly share code, notes, and snippets.

@samikeijonen
Created February 2, 2018 10:55
Show Gist options
  • Save samikeijonen/453eddab466768690f8f9898101cde8f to your computer and use it in GitHub Desktop.
Save samikeijonen/453eddab466768690f8f9898101cde8f to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>Semantic HTML</title>
</head>
<body>
<header>
<nav>
<ul>
<li><a href=”/home”>Home</a></li>
<li><a href=”/about”>About</a></li>
<li><a href=”/semantics”>Semantics</a></li>
</ul>
</nav>
</header>
<main>
<article>
<h1>Semantic HTML</h1>
<p>That wasn’t so hard.</p>
</article>
</main>
<aside>
<p>Additional information.</p>
</aside>
<footer>
<p>Information about the site.</p>
</footer>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment