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 Basics Going Further with HTML Linking to Sections of a Web Page

linking to a different web page

after following all steps in the video and refreshing my work space the experience VR page's read more link is taking me to a not found page. help me where have i gone wrong or left something.

Luke Christodoulou
Luke Christodoulou
5,999 Points

Are you linking to an existing webpage or are you linking to one that you've built? It'd help if you were to post your code but this is an example of that a link should look like.

<a href="https://teamtreehouse.com/vr" target="_blank">Start Your VR Journey</a>

The anchor at the beginning and the closing anchor at the end, the href and then the link in quotation marks. The target="_blank" isn't essential but it's useful since it opens up the link in a new tab.

Jason Anders
Jason Anders
Treehouse Moderator 145,858 Points

Moderator Note: Duplicate post for same topic has been deleted. Please refrain from multiple postings with the same topic/question.

Thank-you
~ Jason - Treehouse Community Moderator

:dizzy:

3 Answers

Your article.html page is in a folder named 2017 so the link would be:

<a href="articles/2017/article.html#vr-article">Read More</a>

the articles,html is not even opening when i preview the page, it keeps showing the index.html only

Nebojsa Knjur
Nebojsa Knjur
682 Points

It is by default. You should press "Read More" link on index.html page to navigate to Article page.