tell the html tag used for paragraph and biggest heading
Answers
Answer:
h1 is the largest heading tag and h6 is the smallest one. So h1 is used for most important heading and h6 is used for least important. Headings in HTML helps the search engine to understand and index the structure of web page
Explanation:
AnsweR:-
The <Hn> Tag
This tag is commonly used to add heading to the content of the web page. There are 6 levels of heading <H1>,<H2>,<H3>,<H4>,<H5>,<H6>. H1 has the largest font size and H6 has the lowest font size. Heading tags have ALIGN attribute. The ALIGN attribute allows you to align your heading to left side, center or right side of your web page. It can be used as shown:
<html>
<head>
<title> Different Alignment </title>
</head>
<body>
<h1 align = left> aligns towards left of the web page </h1>
<h2 align = center> aligns towards center of the web page </h2>
<h3 align = right> aligns towards right of the web page </h3>
</body>
</html>
The <P> tag
The paragraph tag is written has <P>. This tag defines start and end of a paragraph in the text. It is both a container as well as an empty tag. Whenever you want to start a new paragraph, you can start the paragraph tag using <P> without closing the previous paragraph tag. In order to avoid confusion it is advised to use this tag as container tag starting with the <P> tag and ending with the </P> tag. The paragraph tag automatically insert a blank line between two paragraphs. The <P> tag use the line attribute. The ALIGN attribute can take three values:
Left: It aligns the text to the left of the web page. For example,
<p align= "left"> Animation </p>
Right: It aligns the text to the left of the web page. For example,
<p align= "right"> Animation </p>
Center: It aligns the text to the left of the web page. For example,
<p align= "center"> Animation </p>
Following webpage is created by using the <P> tag:
<html>
<head>
<title> example of paragraph</title>
</head>
<body>
<p>First paragraph of the content</p>
<p>Second paragraph of the content</p>
<p>Third paragraph of the content</p>
<p>Fourth paragraph of the content</p>
</body>
<)html>