You can learn "What is HTML" from this post !


HTML means Hyper Text Markup Language. This language used to build basic structure on websites. It's almost like human bone structure. It has a head, It has body, It has foots.  I don't tell it is human, but this language is backbone on the website. 

If you come to develop website, you must learn this HTML language. It must be done. This language is very simple and easy to learn.

This is a basic structure in HTML

If you use Visual Studio Code or other code editor, first create an HTML file like → index.html. After open file and type this '!' and press tab or enter button. If you type this mark '!' and press tab or enter, you can get this basic HTML structure easily


<!DOCTYPE html>
<html>
<head>
    <title>Title of the Webpage</title>
</head>
<body>

    <h1>My Heading</h1>
    <p>My paragraph.</p>

</body>
</html>

If do you want to learn about this <head>, <title>, <body> etc… tags go to w3school.

What is an HTML element

Many HTML elements have a starter tag and closing tag. We can write content between starer tag and closing tag. 

Some of tags in HTML:

  • <head> </head>
  • <body> </body>
  • <header> </header>
  • <nav> </nav>
  • <h1> </h1>
  • <h2> </h2>
  • <p> </p>
  • <footer> </footer>
  • <span> </span>
  • <button> </button>
Do you want to learn more about HTML tags : click here 

Some tags don't have a closing tag. We call them self-closing tag

  • <area/>
  • <br/>
  • <img/>
  • <link/>
  • <input/>

Do you want to learn more about self-closing tags : click here