Posts

Showing posts from October, 2019

Std. XI I.T || Skill Set 2 - HTML5 || SOP 1

Image
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  11 th . Procedure: HTML code to be typed in notepad and saved with suitable file name e.g - sop1.html <!DOCTYPE html> <html> <head> <title>SOP1</title> </head> <body bgcolor="green" text="red"> <h1>My First Web Page</h1> <hr size="5" width="100%" color="blue"> <b>Name - Rupali Debnath</b><br> <i>Address - Boisar</i><br> <p>Standard - 11<sup>th</sup></p> </body> </html> Output to be executed in Internet explorer web browser    Steps to perform SOP1...