Friday 6 February 2015

Creation of website in devnagri script



Devnagri Script.html

<html>
<heaD>
<title>india</title>
</head>
<body>
<center>Pollution in India</center>
<br>
&nbsp;प्रदूषण <br>
&nbsp;&nbsp;&nbsp;प्रदूषण जीवनासाठी हानीकारक आहे.<br>
&nbsp;&nbsp;&nbsp;प्रदूषण टाळा जीवन वाचवा.
</body>
</html>

Cross Browser Testing with Difference in rendering



CrossBrowserTesting.html
<html>
<head>
<title>cross broswer </title>
<bgsound src="C:\XII\Exp-5 Cross Browser Testing\Colour Blind.mp3" loop="-1">
</head>
<body>
<hr size="5" COLOR="AQUA">
<hr>


<CENTER>
<img src="noimage.jpg" alt="broken image" HEIGHT="100" WIDTH="150"></img></CENTER>

<CENTER>Bordercolordark and Bordercolorlight is  supported by internet explorer</CENTER>

<CENTER>
<table border ="5" bordercolordark="black" bordercolorlight="orange" width="400" height="200">
<caption>
<font face="Comic Sans MS" color="blue" size="4"> cross bowser testing</font>
</caption>
<tr>
<td><font color="indigo" face="garamond"><b>Microsoft Internet Explorer</b></font></td>
<td><font color="indigo" face="garamond">Version:6.0</font></td>
</tr>
<tr>
<td><font color="red" face="garamond"><b>Netscape Navigator</b></font></td>
<td><font color="red" face="garamond">Version:9.5</font></td>
</tr>
</table>
</CENTER>


</body>
</html>

Use of Video On Web page with controls and without controls



Video With Control .html
<html>
<head>
<title>videoembed tag</title>
</head>
<body bgcolor="lavender">
 VIDEO WITH CONTROLS
<center><h2>A VIDEO CLIP FILE OF AN EMBED TAG. </h2>
<embed src="Wildlife.wmv" WIDTH="400" HEIGHT="350" AUTOSTART=FALSE LOOP=TRUE></center>
</body>
</html>

Video without control.html
<html>
<head>
<title>video_im g tag</title>
</head>
<body  bgcolor="#aabb cc">

VIDEO  WITHOUT CONTROLS
<h2>A VIDEO  CLIP FILE  OF AN IMG -  TAG  WITHOUT  CONTROLS.  </h2>
<center><Img  dynsrc="Wildlife.wmv"  width="400"  height="250"
   loopdelay="150 0"  start="Mouseov er"  Border="5">
</body>
</html>

Use of Audio and animation with control and without contro



Use of Audio and animation with control.html

<html>
<head>
<title>Use of audio and animation on webpage</title>
</head>
<body>
<h1>Use of Audio and Animations on web page with controls </h1>
<embed  src="Kalimba.mp3" loop="-1" >
<img src="images.gif" width=100 height=100 alt="Gif Image">
<hr size ="10" color="yellow">
</body>
</html>

Use of Audio and animation without control.html
<html>
<head>
<title>Use of audio and animation on webpage</title>
</head>
<body>
<h1>Use of Audio and Animations on web page without controls </h1>
<bgsound  src="Kalimba.mp3" loop="-1" >
<img src="images.gif" width=100 height=100 alt="Gif Image">
<hr size ="10" color="yellow">
</body>
</html>

Hyperlinks on a web page using Client side image mapping



ClientSideImage.html

<html>
<head>
<title>image mapping</title>
</head>
<body bgcolor="plum">
<img src="earth.jpg"  height="400" width="500" usemap="#M1" border="5">
<MAP NAME="M1">
<center>
<font face="Garamond" color="indigo" size="5"><b>IMAGE MAPPING</b></font>
<AREA SHAPE="RECT" COORDS="0,0,120,170"
HREF="http://www.yahoo.com" alt="ATTITUDE!">
<AREA SHAPE="CIRCLE" COORDS="250,200,75"
1.    HREF=" http://en.wikipedia.org/wiki/Saving_Planet_Earth
2.       " ALT="OPPURTUNITY!">
<AREA SHAPE="POLY" COORDS="400,400,500,300,500,400,400,400,"
HREF=" http://www.orkut.com "
ALT="INEPTITUDE!">
</BODY>
</HTML>