Skip to content

Instantly share code, notes, and snippets.

@steinsag
Last active December 11, 2015 02:58
Show Gist options
  • Save steinsag/4534107 to your computer and use it in GitHub Desktop.
Save steinsag/4534107 to your computer and use it in GitHub Desktop.
A basic HTML5 page.
nav h1, footer h1 {
display: none;
}
<!DOCTYPE html>
<html lang="de">
<head>
<title>HTML5 Experiment: Entwicklung eines Wordpress Themes</title>
<meta charset="utf-8" />
<link rel="stylesheet" href="index.css">
</head>
<body>
<header>
<hgroup>
<h1>Sent from Hauptstadt</h1>
<h2>ein Blog für den geneigten Leser</h2>
</hgroup>
<nav>
<h1>Hauptmenü</h1>
<ul>
<li><a href="/about">Über mich</a></li>
<li><a href="/publikationen">Publikationen</a></li>
<li><a href="/phd">Doktorarbeit</a></li>
<li><a href="/impressum">Impressum</a></li>
</ul>
</nav>
</header>
<article>
<header>
<h1>HTML5 Experiment: Entwicklung eines Wordpress Themes</h1>
</header>
<p>…Text des Artikels oder Teaser…</p>
</article>
<article>
<header>
<h1>Hacking von digitalen Musikkatalogen?</h1>
</header>
<p>…Text des Artikels oder Teaser…</p>
</article>
<aside>
<h1>Seitenleiste 1</h1>
<section>
<h2>Seiten</h2>
<ul>
<li><a href="/about">Über mich</a></li>
<li><a href="/publikationen">Publikationen</a></li>
<li><a href="/phd">Doktorarbeit</a></li>
<li><a href="/impressum">Impressum</a></li>
</ul>
</section>
<section>
<h2>Tags</h2>
<ul>
<li><a href="/tag/android">Android</a></li>
<li>…</li>
</ul>
</section>
</aside>
<aside>
<h1>Seitenleiste 2</h1>
<section>
<h2>Lesezeichen</h2>
<ul>
<li><a href="/feed">RSS Feed</a></li>
<li>…</li>
</ul>
</section>
</aside>
<footer>
<h1>Fußzeile</h1>
<ul>
<li>Urheber: Sebastian Stein</li>
<li><a href="/impressum">Impressum</a></li>
</ul>
</footer>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment