Posts

Showing posts from 2013

Display Window

copy the code save as .html <html> <head> <script language="JavaScript"> <!-- hide function openWin2() { myWin= open("http://www.facebook.com", "c", "width=400,height=300,status=no,toolbar=no,menubar=no"); } // --> </script> </head> <body> <form> <input type="button" value="Open new window" onClick="openWin2()"> </form> </body> </html>

LINKS

copy the code save as .html <HTML> <HEAD> <TITLE>Listing 11-13</TITLE> <STYLE>   A:link {text-decoration: none}   A:hover {color: red; text-decoration: underline;font-size:20}   A:visited {color: green; text-decoration: underline} </STYLE> </HEAD> <BODY> <A HREF="http://www.facebook.com">www.facebook.com</A><BR> <A HREF="http://www.gmail.com">www.gmail.com</A><BR> <A HREF="http://www.google.com">www.google.com</A><BR> <A HREF="http://www.pvpsiddhartha.ac.in">www.pvpsiddhartha.ac.in</A><BR> </BODY> </HTML>

BACKGROUND COLORS

copy the code save as .html <html> <body> <center> [<a href="/" onMouseOver="document.bgColor='Green'">GREEN</a>]&nbsp;&nbsp; [<a href="/" onMouseOver="document.bgColor='Red'">RED</a>]&nbsp;&nbsp; [<a href="/" onMouseOver="document.bgColor='orange'">orange</a>]&nbsp;&nbsp; [<a href="/" onMouseOver="document.bgColor='green'">brightgreen</a>]&nbsp;&nbsp; [<a href="/" onMouseOver="document.bgColor='seagreen'">seagreen</a>]&nbsp;&nbsp; </center> </body> </html>

RANDOM

copy the code save as .html <html> <head> <title> J Script </title> <script language="javascript"> var value; document.writeln("<body bgcolor=cyan>"); document.writeln("<table cellpadding=20 border=1 align=center> "); document.writeln("<caption><b>Refresh this page</b></caption><br><br><tr>"); for(var i=1;i<=9;i++) {                    value=Math.ceil(Math.random()*10); document.writeln("<td align=center>"+value+"</td>"); if(i%3==0 ) document.writeln("</tr><tr>"); } document.writeln("</tr></table>"); document.writeln("</body>"); </script> </head> </html>