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 trialKim Dallas
11,461 Pointsit's already tagged for paragraphs
the introductory part and copy righted information is already tagged
<!DOCTYPE html>
<html>
<head>
<link href="styles.css" rel="stylesheet">
<title>My Portfolio</title>
</head>
<header>
<body>
<ul>
<li><a href="#">About</a></li>
<li><a href="#">Work</a></li>
<li><a href="#">Contact</a></li>
</ul>
<h1>My Web Design & Development Portfolio!</h1>
<p>A site featuring my latest work.</p>
</header>
<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>
<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>
6 Answers
Steven Parker
231,236 PointsThere's a "tag overlap" here where the "header" begins before the body, but ends inside it.
The header should be entirely within the body.
Since this wasn't detected by the first task, you might want to make a bug report to the Support folks.
Then for task 2, you'll need to add a different container element around the final paragraphs.
Kim Dallas
11,461 Pointsthank you steven. what is introductory text in this html page? it looks like it's perfectly edited
Steven Parker
231,236 PointsThe header
element you added is indeed "an element that represents a group of introductory content." The only problem was the tag overlap with the body.
Kim Dallas
11,461 PointsI fixed that steven but it's saying everything is footer content. in paragraphs. that's what is throwing me off
Steven Parker
231,236 PointsThe "footer" content is just the last two paragraphs in the body. If you still have a problem, you might need to show the code as it is now (maybe start a fresh question).
Kim Dallas
11,461 PointsI have. i've restarted it repeatedly and fixed the header code. it's stuck on calling everything footer information. including the lists. that's what I can't understand. no matter what I try to put paragraphs around it calls it footer information. I can't move forward to finish this and I have to before the 4th. I don't want to lose this chance at code Louisville.
Steven Parker
231,236 PointsPlease start a fresh question so you can show the code in the current state.
Kim Dallas
11,461 Pointsthanks steven. i've tried deleting the questions i've resolved. it's not working. i'm still trying to beat the clock to catch up and qualify for code Louisville. my internet keeps going out
Steven Parker
231,236 PointsWhat I mean is when you get to the new place where you are stuck, use the "get help" button in the challenge to start a completely fresh forum question. Then it will have your current code in it for analysis.
Steven Parker
231,236 PointsI found your new question and posted an answer there. Good luck with your program!
Kim Dallas
11,461 PointsThank you so much Steven. I'm sorry I'm asking so many questions. I really appreciate your help