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 Build a Simple Website Text Editors and HTML Creating Structure

Images

1) My .gif image doesn't appear in chrome browser. (my code is identical to video). thoughts? 2) I have ">" sign between "about" "cupcakes" "locations", ext. thoughts?

Stone Preston
Stone Preston
42,016 Points

could you post the code please. You will have to use markdown to get it to appear in the forum. There is a link to a markdown cheatsheet at the bottom right corner of the comment/post textbox that explains how to format it.

4 Answers

<!DOCTYPE HTML>
<html>
<head>
    <meta HTTP-EQUIV="CONTENT-TYPE" CONTENT="TEXT/HTML; CHARSET=UTF-8"/>
    <title>smells like bakin' cupcake company</title>
</HEAD>
<body>
  <img src="img/twitter2.gif" alt="smells like bakin">
  <ul class="nav">
    <li><a href="#">Trey</a></li>>
    <li><a href="#">Cupcakes & Prices</a></li>> 
    <li><a href="#">Locations</a></li>> 
    <li class="last"><a href="#">Contact</a></li>>  
    </ul>
    <div id="intro">

perhaps the path leading to your image is off.

Thanks Bella!