Created
May 16, 2011 11:32
-
-
Save tillsc/974281 to your computer and use it in GitHub Desktop.
html4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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