Skip to content

Instantly share code, notes, and snippets.

@xjamundx
Created May 25, 2012 13:24
Show Gist options
  • Select an option

  • Save xjamundx/2788154 to your computer and use it in GitHub Desktop.

Select an option

Save xjamundx/2788154 to your computer and use it in GitHub Desktop.
HTML5 Quick
  1. Which one of these produces an incorrect document outline?

a.

<body>
	<h1>My Page</h1>
	<div>
		<h2>My Section</h2>
	</div>	
</body>

b.

<body>
	<h1>My Page</h1>
	<div>
		<h1>My Section</h1>
	</div>	
</body>

c.

<body>
	<h1>My Page</h1>
	<article>
		<h1>My Section </h1>
	</article>	
</body>

d.

<body>
	<h1>My Page</h1>
	<h2>My Section </h2>
	<div>
	</div>	
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment