Skip to content

Instantly share code, notes, and snippets.

@karlstolley
Created August 22, 2010 18:04
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 karlstolley/544075 to your computer and use it in GitHub Desktop.
Save karlstolley/544075 to your computer and use it in GitHub Desktop.
Skeletal XHTML Page
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Page Title</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!--Use device width on iPhone, other mobile devices; no scaling-->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body>
<div id="page">
<div id="content">
<div id="main">
<h2>Page Title</h2>
</div>
<div id="supporting">
</div>
<!--/#content-->
</div>
<!--/#page-->
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment