Posts

Showing posts from July, 2020

Std XII I.T | Lesson 1 Exercise Q.7

Image
Exercise Q.7 1) <!Doctype html> <html><head> <title>company</title> <style type="text/css"> h1{background-color:green;color:red;font-family:comic sans ms} p{color:blue} </style> </head><body> <h1>XYZ Company</h1> <p>XYZ company is a leading producer of house hold appliances. We produce television sets,  water purifiers, water heaters, refregirators, air conditioners, inverters and washing machines. Our company is ISO 9001:2008 certified. We provide excellent customer satisfaction service and maintainance services. Headquarter of XYZ company is in Noida, Uttar Pradesh, India  and also has 42 branches all over India.  </p> </body></html> 2) <!Doctype html> <html><head> <title>company</title> <style type="text/css"> h1{background-color:yellow;font-style:italic} </style> </h...

Std XII I.T | Lists in HTML

Image
Here are some solved examples of nested lists 1) <!Doctype html> <html> <head> <title>assign 5_1</title> </head> <body> <div style="border:solid blue 2px;width:180px"> <ul> <li>Fruit <ul style="list-style-type:circle"> <li>Bananas <li>Apples <ul style="list-style-type:square"> <li>Green <li>Red </ul> <li>Pears </ul> <li>Vegetables <li>Meat </ul></div> </body> </html> 2) <!Doctype html> <html> <head> <title>assign 5_2</title> </head> <body> <ol> <li>Linux <ol> <li>Ubuntu <li>Kali Linux <li>Red Hat </ol> <li>Windows <ol> <li>Windows 7 <li>Windows 10 </ol> <li>Mac <li>Android </ol> ...