<h3> HTML Tag

In this article I will discuss <h3> tag of HTML
  • 1948

The HTML h3 tag is used for specifying level 3 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>

    <h3>

        Name some color</h3>

    <ul type="square">

        <li>

            <h3 style="color: Red">

                Red</h3>

        </li>

        <li>

            <h3 style="color: Green">

                Green</h3>

        </li>

        <li>

            <h3 style="color: Yellow">

                Yellow</h3>

        </li>

        <li>

            <h3 style="color: Blue">

                Blue</h3>

        </li>

        <li>

            <h3 style="color: Orange">

                Orange</h3>

        </li>

    </ul>

</body> 

 

Output

Name some color

  • Red

  • Green

  • Yellow

  • Blue

  • Orange


Ask Your Question


Got a programming related question? You may want to post your question here

 

© 2020 DotNetHeaven. All rights reserved.