Introduction to HTML

Introduction to HTML

What is HTML?

HTML stands for Hyper Text Markup Language.
HTML is used to create the structure of website.
HTML refer step by step procedure.
HTML  is mainly consist of series of elements.
HTML is a standard language.

Structure of HTML

<html>
<head>
<title> </title>
</head>
<body>
</body>
</html>

<html> : root element of the page.

<head> : It is a meta data of page or it contains the meta information about the page.

<titile> : It is used to declare the title of your page(Title Bar).

<body> : It will contain the description of the page or whatever information you want to add to                    your page

</html>, </head>, </title>, </body> : This is used to the close the portion of your element.

By Tejas Dhodi👦
Sun ,26June 2022

If it is helpful for you please do let me know in comment section👇



Comments