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 Introduction to HTML and CSS (2016) Getting Familiar with HTML and CSS Review: Getting Familiar with HTML and CSS

html tags

not 100% understand what are the html tags are

Tadjiev Codes
Tadjiev Codes
9,626 Points

Just Google and watch the videos. That's the easiest part of Web Development. <p> </p> where you keep the text and there are various tags representing something else.

1 Answer

Hi Elad,

In the simplest terms, HTML โ€œtagsโ€ are a way to define the type of information you want to display on your web page. Theyโ€™re also used to structure content.

There are a range of tags you can use but here are some simple ones, notice how each tag is opened and then closed.

<h1> You can use the h1 tag for a level one header. </h1>
<p> You can use the p tag for paragraph text. </p>

You could also think of tags as containers when using them to structure your page contents. The <body> ... </body> tags for example contain the body of your website.

I hope that helps you understand what HTML tags are and how theyโ€™re used.