Posts

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> ...

We made it to 1000 views 🙏

Image
Very very thankful to all dear viewers for encouraging my work. I am sure it's helpful. I shall definitely post more codings and stuff related to Maharashtra State Board syllabus. Please give your suggestions for upcoming posts will surely work on it. Thank you one and all very much ♥️🙏

Std XI I.T || Skill Set 3 – JavaScript || SOP4

Image
SOP4: Create event driven JavaScript programs for the following using appropriate variables, JavaScript inbuilt string functions and control structures. To accept number and validate if the given value is a number or not by clicking on the button. <!DOCTYPE html> <html> <head> <title>sop4</title> <script language=javascript> function val() { n=f1.v.value if(!isNaN(n)) document.write(n+" is a number") else document.write(n+" is a not number") } </script> </head> <body> <form name=f1> Enter Value:- <input type=text name=v> <br><br> <input type=Submit value=Submit onClick=val()> </form> </body> </html> To calculate addition and division of two numbers. <!DOCTYPE html> <html> <head> <title>sop4</title> <script language=javascript> function add() {...

Std XI I.T || Skill Set 3 – JavaScript || SOP3

SOP3: Create JavaScript program for the following using appropriate variables, JavaScript inbuilt string functions and control structures.        To accept string and calculate its length.          <!DOCTYPE html>          <html>          <head>          <title>sop3</title>          </head>          <body>          <h1> To accept string and calculate its length </h1>          <script language=javascript>           var n           n=prompt("Enter any text")           s=n.length           document.write("Length of the string is "+s)          </script...

Std XI I.T || Skill Set 3 – JavaScript || SOP2

SOP2: Create JavaScript program for the following using appropriate variables, JavaScript inbuilt functions and control structures          To accept two positive or negative numbers and check whether they are equal or not.                                 <!DOCTYPE html>              <html>              <head> <title>sop2</title> </head> <body> <h1> To accept two positive or negative numbers and check whether they are equal or not </h1> <script language=javascript> var n1,n2 n1= prompt("Enter first number positive or negative","type here") n2= prompt("Enter second number positive or negative ","type here") if(n1==n2) document.write(n1+ " and " + n2+" are equal" ) else document.write(n1+ " and " + n2+" are not eq...

Std XI I.T || Skill Set 3 – JavaScript || SOP1

Image
SOP1: Create JavaScript program for the following using appropriate variables, JavaScript inbuilt functions and control structures. ·               To accept integer and display the result by multiplying it with 3. <!DOCTYPE html> <html> <head> <title>sop1</title> </head> <body> <h1>To accept integer and display the result by multiplying it with 3</h1> <script language=javascript> var num,ans num=prompt("Enter a number") ans=num*3 document.write("Answer = "+ans) </script> </body> </html> Type the code in notepad application and save the code as usual in a folder. Provide suitable filename for example sopjs1a.html. In these examples we are embedding JavaScript codes in HTML hence  we provide  .html extensions to the filenames. To see the output as per academic specifications  use Internet Explo...