Posts

Showing posts from November, 2019

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

Image
Create a web page with following specification ·          Image of any scientist with an alternate text as his name. ·          Create a paragraph related to information of that scientist. ·          Create a table of his/her inventions. HTML Code: <!DOCTYPE html> <html> <head> <title>sop2</title> </head> <body> <img src="F:\Rupali\Std XI\SOP\SatyenBose.jpg" alt="Satyendranath Bose"> <p><big><b>Satyendra Nath Bose</b></big> is best known for his work on quantum mechanics in the early 1920s, providing the foundation for Bose-Einstein statistics and the theory of the Bose-Einstein condensate. A Fellow of the Royal Society, he was awarded India's second highest civilian award, the Padma Vibhushan in 1954 by the Government of India.The class of particles that o...

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

Image
SOP4: Write a program using HTML with the following specification. ·         Write a program with details about a class with total number of students-100, (Boys-50), Girls-50 in tabular form. ·         Link this page to another page as follows.                                                             Demo.html HTML Code <!DOCTYPE html> <html> <head> <title>sop4A</title> </head> <body> <table border=1 cellspacing=0> <tr bgcolor="gold" align="center"> <th>Number of Students <th>Boys <th>Girls </tr> <tr bgcolor="lightgreen" align="center"> <th>100 <th>50 <th>50 </tr> </table> </body> ...

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

Image
SOP3: Create a webpage with the following specification. ·         Display heading ‘Application Form’ in highest heading with center alignment. ·         Accept name, standard 11 th or 12 th with one selection choice. ·         Submit the form. HTML Code <!DOCTYPE html> <html> <head> <title>sop3</title> </head> <body> <h1 align="center">Application Form</h1> <form name="application"> Name <input type="text" name="n"><br><br> Standard <input type="radio" name="s" value="XI">11<sup>th</sup> <input type="radio" name="s" value="XII">12<sup>th</sup><br><br> <input type="submit" name="submit" value="Submit"> </form> </body> </html> Output Note: For detailed step...