Skip to main content

Header Tags in html


Header tags:


In this HTML h1 to h6 header tags.h1 is biggest header tag 24px.h6 is the smallest header tag 10px.By using the header tags heading and side heading purpose.

h1 { font-size: 24px;}

h2 { font-size: 22px;}

h3 { font-size: 18px;}

h4 { font-size: 16px;}

h5 { font-size: 12px;}

h6 { font-size: 10px;}


Example:


<html>

<head>

<title>Header</title>

</head>

<body>

<h1>Welcome To Htmla2ztutorial</h1>

<h2>Welcome To Htmla2ztutorial</h2>

<h3>Welcome To Htmla2ztutorial</h3>

<h4>Welcome To Htmla2ztutorial</h4>

<h5>Welcome To Htmla2ztutorial</h5>

<h6>Welcome To Htmla2ztutorial</h6>

</body>

</html>


OutPut:





Comments