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!
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

Tommy Gebru
30,164 Pointswhat wrong with my code?
The result of my code(after discussing this with treehousesupport ) is the reason why the Workspaces preview feature directs my webpage to my screenshot/ image link
<!DOCTYPE html>
<html lang="en">
<head>
<title>Home - Joe's Pizza Co.</title>
<link rel="stylesheet" href="../css/style.css">
</head>
<body>
<!-- Page Container-->
<div id="container">
<!-- Header -->
<header>
<!-- Logo -->
<div id="logo"><h1>Joe's Pizza Co.</h1></div>
<!-- Navigation -->
<nav>
<ul>
<li>
<a href="index.html" title="Joe's Pizza Co." class="active">
Home
</a>
</li>
<li>
<a href="about.html" title="Find out more about Joe's Pizza Co." >
About
</a>
</li>
<li>
<a href="news.html" title="Latest news about Joe's Pizza Co.">
News
</a>
</li>
<li>
<a href="menu.html" title="The restaurant menu for Joe's Pizza Co." >
Menu
</a>
</li>
<li>
<a href="locations.html" title="Joe's Pizza Co. restaurant locations." >
Locations
</a>
</li>
</ul>
</nav>
</header>
<!-- Main Content -->
<div>
<!-- Feature -->
<section id="feature">
<hgroup>
<h1>
New York's Best Pizza
</h1>
<h2>
joe's pepperoni special
</h2>
</hgroup>
</section>
<!-- Home-text -->
<section id="home-text">
<h1>
Welcome to Joe's Pizza Co.
</h1>
<p>
We pride ourselves on serving up the best pizzas in New York City. Come and visit one of our family-friendly restaurants and take a look at our wide range of authentic Italian pizzas. We can also deliver direct to your door with our speedy takeaway service.
</p>
<p>
Please take a look at the <a href="locations.html">locations</a> page for more information about where you can find our fantastic restaurants.
</p>
</section>
<!-- Special Offers-->
<section id="offers">
<h1>
Special Offers
</h1>
<ul>
<li>
10% Off All Pizzas When You Eat In!
</li>
<li>
20% Off Joe's Pepperoni Special with the promo code NYBESTPIZZA
</li>
</ul>
</section>
</div>
<!-- Footer -->
<footer>
<small>© 2012 Joe's Pizza Co. All Rights Reserved</small>
-
<a href="sitemap.html" title="Links to all the pages on this website">Sitemap</a>
</footer>
</div>
</body>
</html>