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

CSS

Why isn't the font changing in my document?

'<!DOCTYPE HTML> <html> <head> <div class= "container">

<title>Spider Web Design</title>
<div id= "header">  
<h1> Website design from &pound;100!</h1>
<h2> Are you looking for a simple page website made within 48 hours for a bargain price? Well look no further! SpiderWeb Design will produce an up to date and visually appealing site for all types of businesses.</h2>
<link rel="stylesheet" href="/Users/JamesJohnBryer/Downloads/websitewaters-island01-stage03/css/normalize.css" type="text/css" media="screen">
 <link rel="stylesheet" href="/Users/JamesJohnBryer/Downloads/websitewaters-island01-stage03/css/grid.css" type="text/css" media="screen">
<link href='http://fonts.googleapis.com/css?family=Nunito' rel='stylesheet' type='text/css'>
 <link rel="stylesheet" href="/Users/JamesJohnBryer/Downloads/websitewaters-island01-stage03/css/style.css" type="text/css" media="screen">
</head>

<body> <div class="container clearfix"> <div class="grid_5"> <br> <H2> We have several packages to offer:</H2>
<br> </div> <br> <br> <br> <H2> Toilet Spider package </H2> <br> <h3> The toilet spider package gives you access to a high quality one page site with visual depictions of photos, logos, one email, domain name and web hosting. Take this package if you are a start up business or simply need a small presence on the world wide web. </h3> <img src="/Users/JamesJohnBryer/Documents/HTML/untitled folder/garden spider.jpg" alt= "garden spider"/> <H2> Garden spider package </H2> <h3> The Garden spider package gives you access to up to 3 pages as well as photos, logos, a domain name, web hosting, and 3 emails. Take this if you want navigation within your site and more contact details displayed.</h3> <img src="/Users/JamesJohnBryer/Documents/HTML/untitled folder/toilet spider.jpg" alt= "garden spider"/>

<h2>The Turantula spider package</h2>   
<h3> The Turantual package really is the best thing for a growing business to take as we offer 7 pages, 6 emails, a domain name, web hosting, and visual depictions of photos, logos and a mailing list option.</h3>
<img src="/Users/JamesJohnBryer/Documents/HTML/untitled folder/turantula spider.jpg" alt= "garden spider"/> 
</div>

</div>
<ul>
    <div class="grid_8">

        <li><a href="#">Garden spider package &pound;100</a></li>
        <li><a href="#">Toilet spider package &pound;250</a></li>
        <li><a href="#">Tuarantula spider package &pound;500</a></li>
</ul>
</div>

</body> <Style> body { background-color:lightblue; } </style>

</div> <p>All rights reserved copyright 2013. Spider design.</p>

</html>

1 Answer

Is it your /div tags? Because it looks like you have an opening div tag for header, and a closing /div after your image, then another closing /div (why?), then the opening div tag for your unordered list, then its closing /div tag at the bottom. That would be 2 opening div tags and 3 closes, unless there's more I couldn't see.