Skip to content

Instantly share code, notes, and snippets.

@tillsc
Created May 16, 2011 11:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save tillsc/974289 to your computer and use it in GitHub Desktop.
Save tillsc/974289 to your computer and use it in GitHub Desktop.
html5
<!DOCTYPE html>
<html lang="de">
<head>
<title>HTML5 Dokument</title>
<meta charset="utf-8">
</head>
<body>
<header>
<h1>Der Header</h1>
</header>
<nav><ul>
<li>Die Navigation</li>
</ul></nav>
<article>
<header>
<h1>Inhalts-Überschrift</h1>
</header>
<p>Irgend welcher Inhalt...</p>
<footer>Ein kleiner Footer unter dem Inhalt</footer>
</article>
<aside>
<h1>Marginalspalte</h1>
<p>Inhalt der Marginalspalte</p>
</aside>
<footer>Der Footer</footer>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment