Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<title><h2></title>
</head>
<body>
<!-- is not strictly inline -->
<p><dfn>text
<h2>more text</h2>
</dfn></p>
<!-- is not structured inline -->
<p>text
<h2>more text</h2>
</p>
<!-- cannot contain blocks -->
<h2>
<p>p1</p>
<p>p2</p>
</h2>
<!-- cannot contain structured inline -->
<h2>text
<ul><li>text</li></ul>
</h2>
</body>
</html>