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 trialShari Staten
11,540 PointsHTML 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>
3 Answers
Ran Wang
Full Stack JavaScript Techdegree Graduate 32,191 Pointsin your <img> tag, you typed in 'atl' which is an error, its 'alt' which is a required attribute when inserting an image.
Shari Staten
11,540 PointsSorry 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!
Shari Staten
11,540 PointsWell, snap!!! I'll change fix the typo and see what that does.
Saajan Bedi
12,174 PointsSaajan Bedi
12,174 PointsPost a sanpshot of project. Its alt by the way in img tag you're using atl