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

Arum Mohee
1,288 Pointsmy image does not appear I've done everything correctly i don't understand!
<!DOCTYPE html>
<hmtl>
<head>
<meta charset="utf-8">
<title>Arum Mohee | Programmer</title>
</head>
<body>
<header>
<a href="index.html">
<h1>Arum Mohee</h1>
<h2>Programmer</h2>
</a>
<nav>
<ul>
<li><a href="index.html">Portfolio</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<section>
<ul>
<li>
<a href="img/numbers-01.jpg">
<img src="img/numbers-01.jpg" alt="">
<p>Experimentation with color and texture.</p>
</a>
</li>
<li>
<a href="img/numbers-02.jpg">
<img src="img/numbers-02.jpg" alt="">
<p>Playing with blending modes in Photoshop.</p>
</a>
</li>
<li>
<a href="img/numbers-06.jpg">
<img src="img/numbers-06.jpg" alt="">
<p>Trying to create an 80's style of glows.</p>
</a>
</li>
<li>
<a href="img/numbers-09.jpg">
<img src="img/numbers-09.jpg" alt="">
<p>Drips created using Photoshop brushes.</p>
</a>
</li>
<li>
<a href="img/numbers-12.jpg">
<img src="img/numbers-12.jpg" alt="">
<p>Creating shapes using repititon.</p>
</a>
</li>
</ul>
</section>
<footer>
<p>© 2016 Arum Mohee.</p>
</footer>
</body>
</hmtl>

Arum Mohee
1,288 Pointsits still the same situation no pictures even after i changed the "html"
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Arum Mohee | Programmer</title>
</head>
<body>
<header>
<a href="index.html">
<h1>Arum Mohee</h1>
<h2>Programmer</h2>
</a>
<nav>
<ul>
<li><a href="index.html">Portfolio</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<section>
<ul>
<li>
<a href="img/numbers-01.jpg">
<img src="img/numbers-01.jpg" alt="">
<p>Experimentation with color and texture.</p>
</a>
</li>
<li>
<a href="img/numbers-02.jpg">
<img src="img/numbers-02.jpg" alt="">
<p>Playing with blending modes in Photoshop.</p>
</a>
</li>
<li>
<a href="img/numbers-06.jpg">
<img src="img/numbers-06.jpg" alt="">
<p>Trying to create an 80's style of glows.</p>
</a>
</li>
<li>
<a href="img/numbers-09.jpg">
<img src="img/numbers-09.jpg" alt="">
<p>Drips created using Photoshop brushes.</p>
</a>
</li>
<li>
<a href="img/numbers-12.jpg">
<img src="img/numbers-12.jpg" alt="">
<p>Creating shapes using repititon.</p>
</a>
</li>
</ul>
</section>
<footer>
<p>© 2016 Arum Mohee.</p>
</footer>
</body>
</html>
4 Answers

Nacho Sepulveda
2,203 PointsProblem is you wrote
<hmtl>
instead of
<html>
Im pretty noob at html but i guess that is the problem

Kristopher Van Sant
Courses Plus Student 18,830 PointsHi Nacho! Your code snippets weren't showing up so I added some markdown around them so that they would display correctly. Be sure to review the markdown cheatsheet to see how to properly format future posts. :)

Arum Mohee
1,288 PointsThank you so much Nacho Sepulveda Kristopher Van Sant

Eric Binmore
580 PointsWell, I don't know if that's just a snippet of a page, but you don't have the basics of a document:
<!DOCTYPE=html />
<html>
<head>...</head>
<body>...</body>
</html>

Arum Mohee
1,288 Pointsi don't know what you mean by the basics of the Document. Eric Binmore

Justin Gingrich
5,586 PointsHe's talking about the DOCTYPE, html, head, and body tags. They appear to be missing from your code...

Jennifer Nordell
Treehouse TeacherWell let's check some basics first. After you save the file and reopen the preview try refreshing the page again. If that fails, then try clearing the browser cache. Then reload the preview.
Eric Binmore ... quite often when posting HTML in the markdown it will remove the doctype, html, head, and body tags. Likely as not they are actually in the code.

Kristopher Van Sant
Courses Plus Student 18,830 PointsArum Mohee, if you are working in workspaces can you please post a snapshot of your workspace here for us to see?
To take a snapshot of your workspace click the camera icon in the upper right corner of your workspace (next to the fork arrow and the preview eye), click "take snapshot", a link will appear, copy that link and post it here. In order to copy the link you might have to actually click the link, which will open the snapshot in a new page, and then copy the link(URL) from there.
Also, as Jennifer mentioned have you refreshed your browser and cleared its cache?
Kristopher Van Sant
Courses Plus Student 18,830 PointsKristopher Van Sant
Courses Plus Student 18,830 PointsHey Arum! I added some markdown around your code so that everything would show up and display correctly. When posting code in the forum you need to surround the code with three back-ticks, ```, before and after your code. Check out the markdown cheatsheet that displays at the bottom of the box when you're writing a post. This will help you see how to properly format posts in the future. :)