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

My "Home, About, Articles, and Contact links are no longer linked or underlined.

After following along I somehow altered the links. Mine seem to be similar to the instructional video, but the links no longer show, it is just basic text.

`` <body> <div> <header> <h1>Experience VR</h1> <p>A <em>simple</em> blog about virtual reality experiences</p>

      <nav>
        <ul>
          <li><a href"#">Home</a></li>
          <li><a href"#about">About</a></li>
          <li><a href"#articles">Articles</a></li>
          <li><a href"#contact">Contact</a></li>
    </ul>
   </nav>
  </header>
  <div>

``

2 Answers

Steven Parker
Steven Parker
229,787 Points

There should be an equal sign (=) between the keyword "href" and the value given for it:

          <li><a href"#">Home</a></li>           <!-- instead of this... -->

          <li><a href="#">Home</a></li>          <!-- it should look like this... -->

Thank you!