Tag Description
<html> This tag marks the start of an html document
<head>...</head>This tag represents the document's header which can keep other HTML
tags like <title>, <link> etc.
<title> The <title>tag is used inside the <head> tag to mention the document title.
<body> This tag represents the document's body which keeps all the contents of a
web page- text, images, sound etc.
<Hn> This tag represents the heading tags of different sizes.
Where n is the number start from 1…6
Like <H1>,<H2>……..<H6>
<center> This tag is used to write a line or text in center
<p> This tag represents a paragraph.
<p align=left/right/center>This tag is used to write paragraph alignment in html.
<br> This tag is used to insert new line or insert enter in html
Bold, Italics, Underline :<b> tag is used to make a text bold in html.
<i>tag is used to make a text italics in html.
<u>tag is used to make a text underlined in html.