Skip to content

Instantly share code, notes, and snippets.

@cpjobling
Created March 12, 2010 14:47
Show Gist options
  • Save cpjobling/330365 to your computer and use it in GitHub Desktop.
Save cpjobling/330365 to your computer and use it in GitHub Desktop.
A template for a valid XHTML 1.1 English language web page coded in the UTF-8 character encoding.
<?xml version="1.0" encoding="utf-8"?>
<!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="en">
<head>
<title>An XHTML 1.1 standard template</title>
<meta http-equiv="content-type"
content="text/html;charset=utf-8" />
<meta http-equiv="Content-Style-Type" content="text/css" />
<link rel="stylesheet" type="text/css" media="screen" href="nostyle.css" />
</head>
<body>
<p> Your HTML content here </p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment