Directly writing tags like <h1> or <h2> is not recommended. Whenever create a html file, it has to have a proper structure which means file should say the below attributes
What kind of file is this
Whom it will be useful
What kind of content is going to present
Need to display in the google search engine or not
Instead of directly writing <h1> tag in a file what could we do is bring the structure in the HTML file which talk about the above mentioned attributes.
I list out few mandatory tags here which talk about its usages.
Tag Name | Usage |
<html> | It represents what kind of file we created |
<head> | It is a parent tag and it may contains multiple child tags which talk about the meta details about the page i.e what is used for, what kind of content it has and information/keywords for google search engine. |
<title> | Title of the page |
<body> | Whatever need to display in the blank page it should come under the <body> tag. |
<h1> | Used to display first level headings. |
<h2> | Used to display second level headings. |
<h3> | Used to display third level headings. |
<h4> | Used to display fourth level headings |
<h5> | Used to display fifth level headings |
<h6> | Used to display sixth level headings |
create a file called "myfirstcompletepage.html" and type the below lines.
<html>
<head>
<title>My First Complete Webpage</title>
<meta name="description" content="I am learning html. It is my first creation." />
</head>
<body>
<h1>Heading1</h1>
<h2>Heading2</h2>
<h3>Heading1</h3>
<h4>Heading1</h4>
<h5>Heading1</h5>
<h6>Heading1</h6>
</body>
</html>
following will be the output of this program.