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

Help withe Code Challenge 4 of 4 Html Creating The List (Please tell me what is wrong and how to fix it)

<!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/cupcake.jpg"> <ul class="nav"> <li><a href="#">About</a></li <li><a href="#">Cupcakes</a></li <li><a href="#">Locations</a></li </body> </html>

What is the challenge?

5 Answers

Assuming this is your code:

<!DOCTYPE HTML> Smells Like Bakin' Cupcake Company
AboutCupcakesLocations

You've got the title and list there. You're just missing the HTML tags or elements that the browser needs in order to format your text.

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>Smells Like Bakin' Cupcake Company</title>
    </head>
    <body>
        <img src="cupcake.jpg" alt="Cupcake">
        <ul>
            <li>About</li>
            <li>Cupcake</li>
            <li>Locations</li>
        </ul>
    </body>
</html>

If you're having trouble with the code challenge try watching the video again.

<!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/cupcake.jpg"> <ul class="nav"> <li><a href="#">About</a></li <li><a href="#">Cupcakes</a></li <li><a href="#">Locations</a></li </body> </html>

This is my code

Chase Lee
Chase Lee
29,275 Points

Here is a thread on how to display code in the forum.

.....