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 coding error...image does not appear. Where did I go wrong?

<!DOCTYPE html>
<html>
  <head>
    <title>VR Article</title>
  </head>

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

      <nav>
        <ul>
            <li><a href="../../index.html">Home</a></li>
            <li><a href="#">About</a></li>
            <li><a href="#">Articles</a></li>
            <li><a href="#">Contact</a></li>
        </ul>    

      <ul>
            <li>Email</li>
            <li>Phone</li>
            <li>Address</li>        
      </ul>
      </nav> 

    </header>

     <img src"../../img/vr-user.jpg" atl="User trying a VR headset">

    <article>

Post a sanpshot of project. Its alt by the way in img tag you're using atl

3 Answers

in your <img> tag, you typed in 'atl' which is an error, its 'alt' which is a required attribute when inserting an image.

Sorry it took so long for me to get back. I think I found the error! It was a closing tag where it didn't need to be. But, you all found the typo! I can only award one best answer so I'm going with the first person that responded. Thank you both for your input!

Well, snap!!! I'll change fix the typo and see what that does.