Created
January 3, 2009 16:22
-
-
Save zvoase/42895 to your computer and use it in GitHub Desktop.
This file contains 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
#contributor : Zachary Voase <[email protected]> | |
#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