Skip to content

Instantly share code, notes, and snippets.

@zvoase
Created January 3, 2009 16:22
Show Gist options
  • Save zvoase/42895 to your computer and use it in GitHub Desktop.
Save zvoase/42895 to your computer and use it in GitHub Desktop.
#contributor : Zachary Voase <zack@biga.mp>
#name : Complete XHTML 1.1 Document
# --
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="${1:en}">
<head>
<title>${2:Title}</title>
<!-- meta tags -->
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<meta http-equiv="content-style-type" content="text/css; charset=UTF-8" />
<!-- css -->
<link rel="stylesheet" type="text/css" href="${3:/media/css/filename.css}" />
<!-- javascript -->
<script type="text/javascript" src="${4:http://www.google.com/jsapi}"></script>
<script type="text/javascript">google.load("${5:jquery}", "${6:1}");</script>
</head>
<body>
<p>${7:Body content goes here...}</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment