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 How to Make a Website Adding Pages to a Website Add a New Page

Guillermo Quiroga
Guillermo Quiroga
9,618 Points

I reviewed the syntax and I can not load my "about" page could help me with this issue?

Add a New Page Adding Pages to a Website

2 Answers

James Ingmire
James Ingmire
11,901 Points

You add a new page by saving a document like newpage.html Then you can link to that page by using the

<a href="newpage.html">New Page</a>

These files need to be in the same folder. Go back over the lessons if your still stuck I would advise.

Hope this helps?

Guillermo Quiroga
Guillermo Quiroga
9,618 Points

<nav> <ul> <list><a href="about.html">About</a></list> <list><a href="index.html"class="selected">Portafolio</a></list> <list><a href="contact.html">Contact</a></list> </ul> </nav>

Travis Johnson
seal-mask
.a{fill-rule:evenodd;}techdegree
Travis Johnson
Full Stack JavaScript Techdegree Student 6,025 Points

Assuming you have an opening <nav> tag, the fix should be as simple as changing all the <list></list> to <li></li>. This will work if your about.html and contact.html files are located in the same root folder as your index.html file. Is this live or are you testing it locally on your computer or browser?