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

JavaScript JavaScript Basics Working with Strings Introducing Strings

3 Answers

Mark Sebeck
MOD
Mark Sebeck
Treehouse Moderator 37,353 Points

Hi Meliani. <h1> is an HTML heading 1 tag. Its the top level heading (biggest). You might need to take the HTML Basics class or review some HTML. Best of luck

Hello Jason Widjaja I think as Mark Sebeck told you yes you are going to need to check HTML Basics and I will try giving you more information that <h1> is a tag that says make my The word you write inside is big for example,

<!doc-type html> <html> <head></head> <body><h1>Try this out!</h1></body> <footer></footer> </html>

try out putting this code in the workspace for HTML Basics and you will find it making (Try this out!) bigger than usual.

Hi Jason! The <H1> HTML tag is the first header tag visible on a page. It is used for the title of a page or post. When viewed in HTML code, the H1 value is enclosed in <h1></h1> tags.