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 Build a Simple Website Text Editors and HTML Images and Lists

HTML Title Tags

How do I type a Title tag in HTML?

2 Answers

Richmond Lauman
Richmond Lauman
28,793 Points

In between the opening and closing head tags, put opening and closing title tags. Btween the opening and closing title tags, put the title. Like so:

<head>
<title>Your Title Goes Here</title>
</head>

Of course there should be other tags within the head but I did not include them to keep it simple. Just make sure the Title tags are in the head of the HTML document.

David May
David May
10,572 Points

It goes in between the <head> </head> tags you will put <title>Type your page title here</title>.

It's that easy!