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 trialBrian Hawkins
1,505 PointsAfter making it to task 3, it then tells me that task 1 is no longer correct but the code never changed.
After reloading the page several times, it still does the same thing. The code has not changed from the first task other than adding more coding from different tasks. If anyone knows how to solve this issue, please let me know as this is going to drive me nuts if I can't figure it out.
<!DOCTYPE html>
<html>
<head>
<link href="styles.css" rel="stylesheet">
<title>My Blog</title>
</head>
<body>
<header>
<h1>My Web Design & Development Blog!</h1>
<nav>
<ul>
<li><a href="#">About</a></li>
<li><a href="#">Articles</a></li>
<li><a href="#">Recent Work</a></li>
</ul>
</nav>
</header>
<blockquote><h2>The Main Articles</h2></blockquote>
<article>
<h3>My Favorite HTML Courses</h3>
<p>Fusce semper id ipsum sed scelerisque. Etiam nec elementum massa. Pellentesque tristique ex ac ipsum hendrerit, eget <a href="#">feugiat ante faucibus</a>.</p>
</article>
<article>
<h3>10 Handy CSS Features</h3>
<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum ante ipsum primis in faucibus orci luctus et <a href="#">ultrices posuere</a>.</p>
</article>
<aside>
<h3>Follow Me on Social Media:</h3>
<ul>
<li><a href="#">Twitter</a></li>
<li><a href="#">Facebook</a></li>
<li><a href="#">LinkedIn</a></li>
</ul>
</aside>
<footer>
<p>© 2017 My Blog</p>
</footer>
</body>
</html>
1 Answer
Marius Posogan
11,184 PointsI didn't use <blockquote>
I included the h2 element and the two articles in a <main> element. So open <main> before h2 and close </main> after the 2nd article.
Brian Hawkins
1,505 PointsBrian Hawkins
1,505 PointsIt somewhat worked, now it is saying that task 2 is no longer passing
Adam N
70,280 PointsAdam N
70,280 PointsDid you get passed task 3? If not, post what your code looks like at the moment.
Brian Hawkins
1,505 PointsBrian Hawkins
1,505 PointsIt has not let me still. Talked to my supervisor about this and he was about to get on a flight so he could not answer the question for me. Here is what it looks like right now:
Adam N
70,280 PointsAdam N
70,280 PointsYour aside element from task 2 is missing. And you havent added the element that is asked for in task 3.
Task 2 said:
Next, place the "social media" heading and list of links inside an element that represents a section of content that's indirectly related to the main content of the page.
Let me know if this helps here
Brian Hawkins
1,505 PointsBrian Hawkins
1,505 Pointshttp://prntscr.com/ie6hmj
Brian Hawkins
1,505 PointsBrian Hawkins
1,505 PointsI did that part, im on task 3. but it keeps telling me that there is something wrong with task 1 or 2 when i click check work for task 3
Adam N
70,280 PointsAdam N
70,280 PointsIn that screenshot, you're not surrounding the "social media" heading and list of links with the right element. It wants the element that represents a section of content that's indirectly related to the main content of the page
Brian Hawkins
1,505 PointsBrian Hawkins
1,505 PointsHow does this look now? I did what you said I should do and what my supervisor said to do and it is still saying task 1 is wrong now. http://prntscr.com/ie7aro
Brian Hawkins
1,505 PointsBrian Hawkins
1,505 PointsI forgot to add my link to the post. lol
Adam N
70,280 PointsAdam N
70,280 PointsAt a glance, that looks fine. Pasting formatted code into your post is better than a screenshot, cause then I could run your code myself.
Brian Hawkins
1,505 PointsBrian Hawkins
1,505 PointsI finally got it. http://prntscr.com/ie7gfa