Saturday, 5 March 2022

XIth HTML SOP 1


SOP 1- Write a program using HTML with following specifications.

·       The Background color should be green.

·       The text color should be red.

·       The heading should be large in size as ‘My First Web Page’.

·       Display a horizontal line after the heading.

·       Display your name in Bold, address in italics and standard as 11th.

        Solution- 

        <html>

        <head>

        <title>

        HTML SOP 1

        </title>

     </head>

    <body bgcolor="green" text="red">

    <h1>My First Web Page</h1>

    <hr>

    <b>Name- Information Technology (XI) </b><br>

    <i>Address- Maharashtra,India.</i><br>

    <u>Std- 11th</u>

    </body>

    </html>

No comments:

Post a Comment