HTML Tags and Elements

HTML stands for “Hyper text markup language” which is like bricks or structure or outline of our Webpage and it’s not an Programming Language. It looks same as our text files, with only some Terms. And today we are gonna to explain those terms. So let’s start by some Definitions:
HTML Tags: Special characters in HTML which can help us to make our webpage outline or structure.
HTML Elements: Elements is just the some of any opening tag, its closing tag and the content inside that element.
Now let’s understand the deep dive by Understanding the popular and most useful elements.
Name | Usage | Syntax |
Header | Used for adding Heading in the Webpage | <header> </header> |
Main | Main content of the Webpage are written inside main | <main> </main> |
Footer | Used for adding Footer in any webpage | <footer> </footer> |
Body | Code of the body is written inside this box | <body> </body> |
paragraph | Used for adding Paragraphs | <p> </p> |
div | used for adding any box | <div> </div> |
h1-h6 | We can heading of any size between h1 o h6 | <h1> </h1> / <h1> </h1> |
form | content of the form is written inside this | <form> </form> |
input | Used for adding Inputs in our form | <input type=”” > |
table | Used for adding Table | <table> </table> |
Unordered List | used for adding Unordered list | <ul> </ul> |
Order list | used for adding Ordered list | <ol> </ol> |
List Items | Used for adding List Items in the List | <li> </li> |
There are lots of more HTML tags and Elements in HTML.
Hope you liked this blog, and if you felled reading this blog helpful then make sure to click on the like icon.
Subscribe to my newsletter
Read articles from Manish Saw directly inside your inbox. Subscribe to the newsletter, and don't miss out.
Written by
