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 trialGerado Lopez
354 PointsHelp 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>
5 Answers
Rby Falr
2,489 PointsAssuming 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.
Elliott Frazier
Courses Plus Student 9,647 PointsWe'll be able to help if you show us your code.
Gerado Lopez
354 Points<!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
29,275 PointsHere is a thread on how to display code in the forum.
Mario Aceituno
671 Points.....
Chris Davis
Courses Plus Student 10,564 PointsChris Davis
Courses Plus Student 10,564 PointsWhat is the challenge?