html formatting tags

Course Content

5. html formatting tags | HTML Tutorial In Hindi/Urdu #5

Code htmlformatting.html as described/written in the video



                                    

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

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

<body>
    <h1>b and strong tags</h1>
    <p>
        <b>Oxford University</b>'s mission is to
        <strong>
            educate
        </strong>
        students
    </p>


    <h1>em tag</h1>
    <p>
        Tokyo is the capital of Japan, the most populous
        <em>
            metropolitan
        </em>
        area in the world.
    </p>

    <h1>i tag</h1>
    <p>
        World's population is around
        <i>
            7billion
        </i>

    </p>

    <h1>mark tag</h1>
    <p>
        HTML is
        <mark>
            FUN
        </mark>
        to learn!
    </p>

    <h1>subscript tag</h1>
    <p>
        H
        <sub>
            2
        </sub>
        O is the scientific term for water.
    </p>

    <h1>supercript tag</h1>
    <p>
        2
        <sup>
            3
        </sup>
        =8
    </p>

    <h1>Small Tag</h1>
    <p>
        <b style="font-size: large;">70% Discount</b>
        <small>
            term and conditions may apply
        </small>
    </p>


    <h1>delete and insert tags</h1>
    <p>
        My favorite color is
        <del>
            blue
        </del>
        <ins>
            red
        </ins>
    </p>
</body>

</html>


                                    

Comments(1)

aaqil 1 month, 3 weeks ago
thanks for giving this free course

Resources

No downloadable resources for this video. If you think you need anything, please post it in the QnA!

    Course Announcements

    Any Course related announcements will be posted here