Posts

Html sop7 image mapping

 <!DOCTYPE html> <html><head><title>image map</title></head> <body bgcolor="pink"> <h1> An example of image Map</h1> <map name="imagemap"> <img src="Tulips.jpg" usemap="#imagemap" alt="Image ofTulip"> <area href="http://www.google.com" shape="rect" coords="0,0,93,65" alt="google site"/> <area href="http://www.gmail.com" alt="gmail site" shape="circle" coords="118,140,40" alt="great wall of china"/> <area href="http://www.unipune.ac.in" alt="unipune" shape="poly" coords="145,187,198,215,245,280,305"/> </map> </body></html>

Html multi source video 6b

 <!DOCTYPE html> <html><head><title>video tag</title></head> <body bgcolor="pink"> <center> <video controls width="200" height="200" autoplay> <source src="v.mp4" type="video/mp4"/> <source src="v.mp4" type="video/mp4"/> <source src="v3.mp4" type="video/mp4"/> <source src="v4.mp4" type="video/mp4"/> <source src="v5.mp4" type="video/mp4"/> <source src="v6.mp4" type="video/mp4"/> <source src="v7.mp4" type="video/mp4"/> Your Browser does not support Video Tag..... </video> <p> video sample</p> </cener> <hr color="yellow" size="7"> </body></html>

Html Single video 6a

 <!DOCTYPE html> <html><head><title>video tag</title> <body bgcolor="pink"> <center> <video src="v5.mp4" width="150" height="150" controls></video> <p> video sample</p> </cener> <hr color="yellow" size="7"> </body></html>

Html multi source audio 5b

 <!DOCTYPE html> <html><head><title>Audio tag</title> <body bgcolor="pink"> <p> Audio sample</p> <audio controls autoplay> <source src="Kalimba11.mp3" type="audio/mp3"/> <source src="Sleep Away.mp3" type="audio/mp3"/> <source src="Faded.mp3" type="audio/mp3"/> Your browser does not support Audio tag...………… </audio> <hr color="yellow" size="7"> </body></html>

Html Single audio 5a

 <!DOCTYPE html> <html><head><title>Audio tag</title> <body bgcolor="pink"> <p> Audio sample</p> <audio src="Kalimba.mp3" type="audio/mp3" controls autoplay> </audio> <hr color="yellow" size="7"> </body></html>

Html sop2 tourist places

 <!DOCTYPE html> <html><head> <style> header(background-color:skyblue;border:double;width:100%;height:60%) </style></head> <body> <header><center><h1> Tourist places</center><br><br><br><br><br><br><br><br></header> <section style="background-color: yellow;border:double;font-style:Italic;width:49%;float:left"><h1>City</ h1> <h2> <ol type="1"> <li>Pune</li> <li>banglore</li> <li>hyderabad</li> <li>Delhi</li> </ol></h2><br><br><br><br><br><br><br><br><br><br><br><br> <br><br><br><br><br><br><br><br><br><br><br><br><br><br> </section> style="background-color:pink;border:double;font-style:oblique;flo...

Java sop6 Total marks

 <!DOCTYPE html> JS_sop6 <html> <head><title>javascript sop 6 </title></head> <body> <script type="text/javascript"> var marks = []; var total=0,avg,a,size = 5; // Array size for(var a = 0 a<=size; a++) { } marks[a] = prompt('Enter array Element ' + (a+1)); for(var a = 0 a<=size; a++) { total=total+parseInt(marks[a]); } alert(" Your Total marks is "+ total); avg=total/6; alert("Your Avarage is "+ avg); switch(true) { case (( vg >= 91 ) && (avg <= 100) ) : alert ("Congratulation!!!....You Got Grade A"); break; case (( g >= 81 ) && (avg <= 90) ) alert ("Congratulation!!!....You Got Grade B"); break; case (( Ng >= 71 ) && (avg <= 80) ): alert ("Congratulation!!!....You Got Grade C"); break; case ( (avg >= 61) && (avg <= 70) ) alert ("Congratulation!!!....You Got Grade D"); break; case ( (avg >= 35) ...