0% found this document useful (0 votes)
31 views1 page

Understanding HTML Heading Tags

The document outlines a program designed to study the different levels of heading tags (h1 to h6) in HTML. It includes an HTML input example that demonstrates the use of these heading tags with the same content. The output section is indicated but not provided in the document.

Uploaded by

gggcdfhbggggcdf
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
31 views1 page

Understanding HTML Heading Tags

The document outlines a program designed to study the different levels of heading tags (h1 to h6) in HTML. It includes an HTML input example that demonstrates the use of these heading tags with the same content. The output section is indicated but not provided in the document.

Uploaded by

gggcdfhbggggcdf
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

Program Number : 03

Program Name : To study different levels of heading tag in webpage using html.

----------------------------------------------------------------------------------------------------------------
Html Input :

<html>

<head>

<title>

Levels of heading tag (1-6 levels)

</title>

</head>

<body>

<h1>My name is Atharv</h1>

<h2>My name is Atharv</h2>

<h3>My name is Atharv</h3>

<h4>My name is Atharv</h4>

<h5>My name is Atharv</h5>

<h6>My name is Atharv</h6>

</body>

</html>

Html Output :

You might also like