HTML Starting tag

HTML stands for Hyper Text Markup Language, which is the most widely used language on Web to develop web pages.
HTML File start with <html> and end with </html> tag.
Head Tag represents the document's header which can keep other HTML tags like <title>, <link> etc. It start with <head> and close with</head>
In Head Tag we give title of our page it start with <title> and close with</title>. It display on Title bar of browser
Now we start body of web page with <body> and close with </body>
Example
<html>
<head>
	<title>
		Our page
	</title>
</head>
<body>
	This is HTML BODY
</body>
</html>	

HTML Headings

Headings are defined with the <h1> to <h6> tags.
<h1> defines the most important heading.
<h6> defines the least important heading.
Example

This is a heading

This is a heading

This is a heading

This is a heading

This is a heading
This is a heading

<h1>This is a heading</h1>

<h2>This is a heading</h2>

<h3>This is a heading</h3>

<h4>This is a heading</h4>

<h5>This is a heading</h5>
<h6>This is a heading</h6>

Attribute of heading tag

Align is Attribute of Heading
There are four types of Align
  1. Left
  2. Center
  3. Right
  4. Justify

Example

This is a left align in heading (Default)

This is a center align in heading

This is a right align in heading

This is a justify align in heading

<h2 align='left'>This is a left align in heading (Default)</h2>

<h2 align='center'>This is a center align in heading</h2>

<h2 align='right'>This is a right align in heading</h2>

<h2 align='justify'>This is a justify align in heading</h2>