Answers for "heading tags in html"

0

html heading elements

<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width initial-scale=1.0"
          </head>
	<title>
		HTML Heading Elements 
	</title>
  <body>
<h1>This is a h1 element</h1>
<h2>This is a h2 element</h2>
<h3>This is a h3 element</h3>
<h4>This is a h4 element</h4>
<h5>This is a h5 element</h5>
<h6>This is a h6 element</h6>
  </body>
</html>

<!--(h stands for heading)-->

<!--For Output, go to this website:-->
<!--https://html-headings.swanith.repl.co/-->

<!--Note: You should never use headings for making text BIG or bold.-->
Posted by: Guest on November-24-2020
0

heading in html

<h1>Page title</h1>
<h2>Subheading</h2>
<h3>Tertiary heading</h3>
<h4>Quaternary heading</h4>
<h5>five heading</h5>
<h6>six heading</h6>
Posted by: Guest on August-05-2021

Browse Popular Code Answers by Language