HTML Tags with Source Code | STUDY VARSITY

Code

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>HTML Tags</title>
</head>

<body>
    <!--- h1 to h6 -->
    <h1>This is heading tag 1</h1>
    <h2>This is heading tag 2</h2>
    <h3>This is heading tag 3</h3>
    <h4>This is heading tag 4</h4>
    <h5>This is heading tag 5</h5>
    <h6>This is heading tag 6</h6>
    <!-- paragraph tag-->
    <p>This is a Paragraph tag.</p>
    <!--br tag-->
    <p>This is a <br />br tag.</p>
    <p><b><i><u>Lorem ipsum</u></i></b> dolor sit, amet consectetur adipisicing elit. Itaque ea tempore soluta quae fugiat suscipit ad
        doloribus consequuntur facere? <u>Quod</u>, neque? Praesentium quasi eius quas ipsa natus alias, quam aliquam!</p>
    <tt>This is monospace</tt>    
    <!--highlight tag--><br/>
    <mark>This is a highlight tag</mark>
    <!-- HTML DIV tag-->
        <div style="background-color: blue;height: 500px; width: 100%;">
            <h1 style="color: white;">This is div tag 1</h1>
        </div>
        <div style="background-color: green;height: 500px; width: 100%;">
            <h1>This is div tag 2</h1>
        </div>

</body>

</html>