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 trialelad yosef
90 Pointshtml tags
not 100% understand what are the html tags are
1 Answer
jenko
8,562 PointsHi 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.
Tadjiev Codes
9,626 PointsTadjiev Codes
9,626 PointsJust 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.