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

Trying to figure out where the error in the referenced code is. https://w.trhou.se/ro5xhlk171 .. Please see link. TY!

I am trying to figure out where the error in the code which I believe that You should be able to get to from this referenced link is. https://w.trhou.se/ro5xhlk171 .. Thanks in advance for Your assistance and help!

3 Answers

tezzica
tezzica
3,938 Points
          </article>    
        </section id="contact">
         <section>
         <h2>Contact</h2>
         <p><strong>Email:</strong> coolvrexperience@gmail.com</p>
         <p><strong>Phone:</strong> 502.974.8585</p>
         <p><strong>Address:</strong></p>
           <address> 
             Experience VR <br>
             2017 Virtual Way <br>
             City, State 47711 <br>
           </address>

         </section>
    </main>  

Line 60 in your index.html is incorrect. Your end tag for section shouldn't have an id. It looks like it is meant to be added to line 61 instead.

Okay, thanks! Any idea why my lines 73, 97, 98 & 99 end tags are throwing up errors?

tezzica
tezzica
3,938 Points

Now that I looked at the code again. Those vanishing closing brackets would be the reason you are continuing to get an error on those lines after you correct the id issue. :)

Line 33. Your img tag is missing a closing bracket (>).

Your awesome Tezzica, thanks so much!