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 Structuring Your Content Marking Up a Blog Post

With regards to linking to articles.html I would get page not found so had to link to the full url

<a href="articles.html">Read more</a> </article>

       <article>  
            <h3>The Advantages of VR simulation</h3>
              <p>
        Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus ultrices euismod turpis eget porta. Etiam nulla massa, pretium et massa nec, ornare dignissim nisi.</p>
            <a href="http://port-80-4ha1lwn9h9.treehouse-app.com/article.html#/articles.html">Read more</a>

1 Answer

Michael Gallagher
Michael Gallagher
7,995 Points

It looks like within the workspace you have:

  • the index.html file
  • an "img" folder
  • an "articles" folder, with a folder within it titled "2017", which contains your article.html file

Linking from your index.html file, you would want to point your href first into the "articles" folder and then into the "2017" folder, and then to your article.html file.

<a href="articles/2017/article.html">Read more</a>