Skip to content

Instantly share code, notes, and snippets.

@tillsc
Created May 16, 2011 11:32
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/974281 to your computer and use it in GitHub Desktop.
Save tillsc/974281 to your computer and use it in GitHub Desktop.
html4
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="de">
<head>
<title>HTML4 Dokument</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<div id="branding">
<h1>Der Header</h1>
</div>
<ul id="nav">
<li>Die Navigation</li>
</ul>
<div id="content">
<div id="main">
<h1>Inhalts-Überschrift</h1>
<p>Irgend welcher Inhalt...</p>
<p class="article-footer">Ein kleiner Footer unter dem Inhalt</p>
</div>
<div id="sidebar">
<h2>Marginalspalte</h2>
<p>Inhalt der Marginalspalte</p>
</div>
</div>
<div id="footer">Der Footer</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment