Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialRyan Elizabeth Foulds
5,133 PointsHTML Basics Challenge 1 of 4 too ambiguous.
Trying to complete this task and it looks right, but still getting a wrong answer notification.
<!DOCTYPE html>
<html>
<head>
<link href="styles.css" rel="stylesheet">
<title>My Portfolio</title>
</head>
<body>
<article>
<nav>
<ul>
<li><a href="#">About</a></li>
<li><a href="#">Work</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
<h1>My Web Design & Development Portfolio!</h1>
<p>A site featuring my latest work.</p>
</article>
<article>
<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>
<nav>
<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>
</nav>
</article>
<p>© 2017 My Portfolio</p>
<p>Follow me on <a href="#">Twitter</a>, <a href="#">Instagram</a> and <a href="#">Dribbble</a></p>
</body>
</html>
4 Answers
Steven Parker
231,248 PointsDid you skip one of the videos?
I'm suspecting the "ambiguous" part you mention has to do with the terminology that ties into the videos.
The challenge says, "Place the ul, h1 and p elements at the top of the page inside an element that represents a group of introductory or navigational content." I see you have placed all 3 of those in an <article>
element, and just the first one in a <nav>
element.
But the "element that represents a group of introductory or navigational content" is the <header>
element.
Vantiv Rocks
Courses Plus Student 9,730 PointsHi I tried different options for this test and I could not find an answer would anyone be able to help me?
Steven Parker
231,248 PointsIf the hints given here don't help, you might want to create your own question and share your actual code in it.
Tony Austin
301 PointsThis quiz question angered me greatly - if someone is stuck on a quiz question , like I am, Treehouse should note which video should be reviewed again. I almost resigned, I don't have time nor do I want to guess,If I am screwing up state when I can get the info. I don't remember anything about header in the last video for it focused on Section, Article and Aside
Steven Parker
231,248 PointsYou can submit suggestions for video or other content improvements directly to the staff using the instructions on the Support page.
tblatcher
4,746 Pointshelp me!!!!!!!!!!!!!!!!!!!!
Steven Parker
231,248 PointsTry starting a new question using the "Get Help" button, which should automatically include your code and a link to the page.
Ryan Elizabeth Foulds
5,133 PointsRyan Elizabeth Foulds
5,133 PointsThanks so much for your help and condescension! Greatly appreciated!
Steven Parker
231,248 PointsSteven Parker
231,248 PointsGlad to help. And no actual condescension intended ā it's just my offbeat sense of humor. I forgot to put a little smirky face there but I'll add it now (but I'm not entirely sure that clarifies it either!). But perhaps we are similar in that?
Happy coding!
Ryan Elizabeth Foulds
5,133 PointsRyan Elizabeth Foulds
5,133 PointsI'll let you off this time, Steven Parker :).