
Adeola Adeniyi
Front End Web Development Techdegree Student 1,195 PointsWhere do you place a <section> at, is it under the <header>
<!DOCTYPE html>
<html>
<head>
<link href="styles.css" rel="stylesheet">
<title>My Portfolio</title>
</head>
<body>
<header>
<section>
<ul>
<li><a href="#">About</a></li>
<li><a href="#">Work</a></li>
<li><a href="#">Contact</a></li>
</ul>
</header>
<h1>My Web Design & Development Portfolio!</h1>
<p>A site featuring my latest work.</p>
<h2>Welcome</h2>
<p>Fusce semper id ipsum sed scelerisque. Etiam nec elementum massa. Pellentesque tristique ex ac ipsum hendrerit, eget feugiat ante faucibus.</p>
<ul>
<li><a href="#">Recent project #1</a></li>
<li><a href="#">Recent project #2</a></li>
<li><a href="#">Recent project #3</a></li>
</ul>
</section>
<footer>
<p>© 2017 My Portfolio</p>
<p>Follow me on <a href="#">Twitter</a>, <a href="#">Instagram</a> and <a href="#">Dribbble</a></p>
</footer>
</body>
</html>
1 Answer

Steven Parker
205,001 PointsTask 1 said "Place the ul, h1 and p elements at the top of the page inside...", but the header here is only enclosing the ul. The h1 and p should also be inside it.
Then for task 3, they say "Place the content between the header and footer (h2, p and ul) inside...", so neither the header or footer are included, and specifically only the h2, p and ul are.
Also, as a general rule, a tag that starts inside another element must also end inside that same element. Tags can never "overlap".