Skip to content

Instantly share code, notes, and snippets.

@boyofgreen
Created April 4, 2012 01:43
Show Gist options
  • Save boyofgreen/2297054 to your computer and use it in GitHub Desktop.
Save boyofgreen/2297054 to your computer and use it in GitHub Desktop.
HTML5 Hacks 2.2
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>...</title>
</head>
<body>
<header data-yuigrid=”doc2” data-wordpress=”2833893”>...</header>
<nav>...</nav>
<article data-yuigrid=”doc2” data-wordpress=”887478”>...</article>
<footer>...</footer>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>...</title>
</head>
<body>
<header>...</header>
<nav>...</nav>
<article>...</article>
<footer>...</footer>
</body>
</html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=UTF-8" />
<title>...</title>
</head>
<body>
<div id=”header”>
<div id=”nav”>
<div id=”doc2”>
<div id=”wordpress-org-2833893”>...</div>
</div>
</div>
<div id=”article”>
<div id=”doc2”>
<div id=”wordpress-org-887478”>...</div>
</div>
</div>
<div id=”footer”>...</div>
</body>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=UTF-8" />
<title>...</title>
</head>
<body>
<div id=”header”>...</div>
<div id=”nav”>...</div>
<div id=”article”>...</div>
<div id=”footer”>...</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment