HTML HEADINGS

 There are six html headings which are as follows in the html format.

<!DOCTYPE>

<html>

<head>

<title>my heading</title>

</head>

<body>

<h1>this is my first heading</h1>

<h2>this is my second heading</h2>

<h3>this is my third heading</h3>

<h4>this is my fourth heading</h4>

<h5>this is my fifth heading</h5>

<h6>this is my sixth heading</h6>

</body>

</html>

the following codes is the headings which starts from heading one to six which h1 is bigger than h2, h2 is bigger than h3, h3 is bigger than h4, h4 is bigger than h5 and h5 is bigger than h6 which is the smallest heading in html.


The picture above is the html headings example in a text editor


That is run example of html heading in a web browser


Comments

Popular posts from this blog

ADDING NUMBERED LIST ON HTML