HTML Tags and Elements

Manish SawManish Saw
2 min read

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.

NameUsageSyntax
HeaderUsed for adding Heading in the Webpage<header> </header>
MainMain content of the Webpage are written inside main<main> </main>
FooterUsed for adding Footer in any webpage<footer> </footer>
BodyCode of the body is written inside this box<body> </body>
paragraphUsed for adding Paragraphs<p> </p>
divused for adding any box<div> </div>
h1-h6We can heading of any size between h1 o h6<h1> </h1> / <h1> </h1>
formcontent of the form is written inside this<form> </form>
inputUsed for adding Inputs in our form<input type=”” >
tableUsed for adding Table<table> </table>
Unordered Listused for adding Unordered list<ul> </ul>
Order listused for adding Ordered list<ol> </ol>
List ItemsUsed 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.

0
Subscribe to my newsletter

Read articles from Manish Saw directly inside your inbox. Subscribe to the newsletter, and don't miss out.

Written by

Manish Saw
Manish Saw