Skip to content

Instantly share code, notes, and snippets.

@fuzzbomb
Created October 3, 2012 17:33
Show Gist options
  • Save fuzzbomb/3828485 to your computer and use it in GitHub Desktop.
Save fuzzbomb/3828485 to your computer and use it in GitHub Desktop.
HTML5 list validation test
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>list test</title>
</head>
<body>
<h1>List validation Test</h1>
<p>This file is NOT valid HTML5. Demonstrates that &lt;a /&gt; elements are not permitted as direct children of &lt;ul /&gt; or &lt;ol /&gt;</p>
<ol>
<li>item</li>
<a href="http://google.com">google</a>
<li>item</li>
</ol>
<ul>
<li>item</li>
<a href="http://google.com">google</a>
<li>item</li>
</ul>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment