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 trial

HTML HTML Links Websites: Part 2

tarry nwaise
tarry nwaise
1,391 Points

Where can I find the answers to this video Websites: Part 2

Some of the questions on the quiz do not seem to be covered in the video. Where can I find the answers to the quiz?

Kendal Droddy
Kendal Droddy
8,334 Points

I just finished this lesson and all of the answers were covered by topics discussed in the video. I suggest rematching the video if you are still stuck.

1 Answer

Ellis Walker
Ellis Walker
3,325 Points

The following are the answers to the questions. If you are still having trouble after reviewing the answers, you should review/rewatch the videos.

Which of the following are absolute links? ANSWER: <a href=”http://google.com”>Take me to Google!</a>

Assuming our HTML files are all in the same folder, which of the following links will lead to "another_page.html"? ANSWER: <a href=”another_page.html”>My Link</a>

Which of the following links will move up one level in the directory structure? ANSWER: <a href=”../another_page.html”>My Link</a>

Which of the following code examples will create an anchor element? ANSWER: <a href=”index.html”>My Link</a>

Which of the following code examples will link to an element with an ID on the same page? ANSWER: <a href=”#some_text”>My Link</a>