Thread
30 HTML Tags You Should Master ( Save IT) ๐Ÿ‘‡
1. Head Tag
In HTML, the <head> tag is used to define the head section of a document.

Which contains meta-information about the document such as the title, scripts, stylesheets, and other important data.
2. Title Tags.
<title></tittle> Used to defined title of an HTML document.

3. Body Tag.
<body></body> Used to define the body content.

4. Anchor Tag.
<a href="google.com">Google</a>
An anchor tag creates clickable links in webpages.
5. Heading Tags
Heading tags are used to create heading in HTML documents.
Heading tags are from <h1>....<h6>

6. Paragraph Tag
<p></p> Used to define the paragraph.

7. Image Tag.
<img src="img.png"> Used to insert an image to HTML document.
8. Nav Tag
<nav></nav> Nav tag is used to create a navigation bar in HTML.

9. List Tag
<li></li> List tas is used to create list item in HTML.
10. Table Tag.
<table></table> Table tag is used to definie table.

Table body.
<tbody></tbody> Used to define the body of the table.

Table Head
<th></th> Used to define the head of the table.

Table Row
<tr></tr> Used to define the row in HTML table.

Table Data
<td></td>
11. ol and ul tags.

<ol></ol> used to create ordered list in HTML.
<ul></ul> used Used to create unordered lists.

12. Button Tags
<button></button> Button tags is used to create buttons in HTML document.
12. Main Tag.
<main></main> Used to create the main section of HTML document.

13. Div Tag
<div></div> Used to create divisions.

14. Footer Tag.
<footer></footer> Used to define footer

15. Section Tag.
<section></section>
16. Article Tag.
<article></article> Used to define independence self contained content in HTML document.

17. Form Tag.
<form></form> Used to create forms in HTML document.

18. Input Tag
<input type="text"> Used to create an input field.
19. Header Tag
<header></header> Used to define a header section.

20. Strong Tag
<em></em> Used to define a text as bold and gives strong importance to the text.

21. Span Tag
<span></span> Used to mark up a part of a text in HTML document.
22. Aside Tag
<aside></aside> Used to define content aside from the page content.

23. Center Tag.
<center></center> Used to set the alignment of text in the center.

24. Textarea Tag.
<textarea></textarea> Used to define an input field with multiple line input.
25. Line break tag.
<br> Used to create a line break in an HTML document.

26. Horizontal Tag.
<hr> Used to create an horizontal line in html document.

27. Bold Tag
<b></b> Used to define any tag as bold.
28. Italic Tag.
<i></i> Used to define any text as italic text.

29. Underline Tag.
<u></u> Used to define any text with underline.

30. Figure Tag
<figure></figure> Used to group together self-contained content, such as images, videos, or illustrations.
โžผ Got Help from this Tweet follow
@iam_chonchol and Retweet for support.
Mentions
See All