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 trialJessica Felicio
3,242 PointsBetween the <head> and </head> tags, give your web page a <title>? Struggling
I seem to be struggling on understanding how to do this! Or what they/re telling me to do!
<!DOCTYPE html>
<html>
<head>
<body>
<title>Jessica Felicio</title>
</body>
</head>
</html>
2 Answers
Joe Cooper
7,431 PointsHi Jessica,
It seems that you've gotten the order and nesting of your elements wrong, but don't worry as it's an easy mistake to make.
Here's how it should look:
<!DOCTYPE html>
<html>
<head>
<title>Jessica Felicio</title>
</head>
<body>
Body content here
</body>
</html>
The <body> and <head> elements are two very separate parts of the page, and in your code you had nested the <body, inside of the <head> element. Nesting is very important in HTML, so ensuring you pay close attention to where elements are positioned within your code is a good habit to learn.
Hopefully this helps.
Joe
Anna A
2,075 Pointstitle must be in a head, not in body tag
Jessica Felicio
3,242 PointsJessica Felicio
3,242 PointsThank you sooo soo much! It worked <3