<h1> HTML Tag

In this article I will discuss <h1> tag of HTML
  • 1986

The HTML h1 tag is used for specifying level 1 headings. There are 6 levels of headings (h1 - h6) with h1 the most important and h6 the least important.

Example

<html>

<head>

    <title></title>

</head>

<body>

    <h1>

        Some Input devices</h1>

    <ul>

        <li>

            <h1>

                Keyboard</h1>

        </li>

        <li>

            <h1>

                Mouse</h1>

        </li>

        <li>

            <h1>

                Touch Pad</h1>

        </li>

    </ul>

</body>

</html>

 

Output

Some Input devices

  • Keyboard

  • Mouse

  • Touch Pad

Ask Your Question 
 
Got a programming related question? You may want to post your question here
 
© 2020 DotNetHeaven. All rights reserved.