Created
April 4, 2012 01:43
-
-
Save boyofgreen/2297054 to your computer and use it in GitHub Desktop.
HTML5 Hacks 2.2
This file contains hidden or 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
<!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> |
This file contains hidden or 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>...</title> | |
</head> | |
<body> | |
<header>...</header> | |
<nav>...</nav> | |
<article>...</article> | |
<footer>...</footer> | |
</body> | |
</html> |
This file contains hidden or 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
<!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> |
This file contains hidden or 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
<!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