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 trialAdrian Thomas
Courses Plus Student 998 PointsIm having a problem with my title tag. i put <title> </title> , with the information between the tags and its still showing up incorrect
Need Help lol?
4 Answers
Daniel Widyanto
5,626 Points<!doctype html>
<html lang="en">
<head>
<meta charset="en">
<title>Your title should go here</title>
</head>
<body>
</body>
</html>
And use the right file =) I have several index.html in different directories. Once I edited the wrong one, and nothing changed when I pressed refresh button.
Logan R
22,989 PointsDid you make sure you put it inside the < header >< /header >?
John Breiner
6,918 Pointsalright to go off of what LR said, do make sure to put it in the <head></head>. Do not put it in the <header></header> Header is for the body part of the website, where as the head is where metadata is stored. It should go <html><head> and in here you put the title as well as any other metadata </head>
John Breiner
6,918 Pointssorry for the double post.
Stone Preston
42,016 PointsStone Preston
42,016 Pointsplease post the full code you have tried. Be sure you format it using markdown (the markdown cheatsheet is at the bottom right of the comment text box)