HTML Codes |
Edit & Change The "RED" Text to Your Reason. |
Stationary Background |
How To Use: Place this code anywhere on the body of your page. This code will appear invisible. |
Right Click Disable |
How To Use: Place this anywhere on the body of your page. This code will appear invisible. |
<body background ="yourimage.gif" bgproperties="fixed"> |
<SCRIPT language=JavaScript> <!-- function click() { if (event.button==2) { alert('Stop trying to Steal My pics... they are mine!!!') } } document.onmousedown=click //--></SCRIPT> |
"Add To Favorites" Link |
How To Use: Place this code at the area where u want ur link to appear at. |
<SCRIPT language=JavaScript type=text/javascript> <!-- function bookMark() { if ((navigator.appName == "Microsoft Internet Explorer") && (parseInt (navigator.appVersion) >= 4)) { window.external.Addfavorite (window.location,document.title); } else { var msg = "Don't forget to add my page to ur Favorites!"; if(navigator.appName == "Netscape") msg += " (CTRL-D)"; alert(msg); } } //--> </SCRIPT> <A href='javascript:bookMark();"><font size="3"><b>BookMarkPage</b></font></a> |
<A HREF="javascript:history.go(-1);">Back to previous page</A> |
Back to Previous Page Button |
How To Use: Place this code at the area where you want your link to appear at. |
Drop Box with Autodirect |
How To Use: Place this code at the area where you want your drop box to appear at. You may insert more <option value="URL.html">Your Text to give more link choices. |
<script language=JavaScript> function Navigate() { var number = NavSelect.selectedIndex; location.href = NavSelect.options[number].value; } </script> <select name="NavSelect" onChange="Navigate (this.form)"> <option value="NONE" SELECTED>Choose One <option value="URL.html">My pics <option value="URL.html">Marks's pics <option value="URL.html">Mary's pics <option value="URL.html">Misc. pics </select> |
Edit & Change The "RED" Text to Your Reason. |
Edit & Change The "RED" Text to Your Reason. |
Edit & Change The "RED" Text to Your Reason. |
Edit & Change The "RED" Text to Your Reason. |
Custom Colored Scrollbar |
How To Use: Place this code anywhere on your page. This code will change the appearance of your scrollbar to your selected appearance. |
<STYLE TYPE="text/css"> body { scrollbar-face-color: #336699; scrollbar-shadow-color: #99CCFF; scrollbar-highlight-color: #99CCFF; scrollbar-3dlight-color: #99C0E6; scrollbar-darkshadow-color: #333333; scrollbar-track-color: #99CCFF; scrollbar-arrow-color: #FFFFFF; }</STYLE> |
![]() |
Edit & Change The "RED" Text to Your Reason. |
Use Ctrl+C to Copy Use Ctrl+V to Paste. |
HTML Code Links www.devon-worldwide.com/html/index www.amusingly-perfect.net/tina/html.html www.javascriptkit.com/cutpastejava.shtml www.javascript.internet.com |
Edit & Change The "RED" Text to Your Reason. |
2 Color Faded Background |
How To Use: Place this code anywhere on the body of your page. This code will appear invisible. |
<style type=text/css>body{filter:progid:dximagetransform.microsoft.gradient (gradienttype=1,startcolorstr=#000000,endcolorstr=#006600 2);height:3}</style> |
Edit & Change The "RED" Text to Your Reason. |
Password Protection Prompt Button |
How To Use: Place this code where you want the password button to appear. |
<SCRIPT> function password() { var testV = 1; var pass1 = prompt('Please Enter Password',' '); while (testV<3) { if (!pass1) history.go(-1); if (pass1.toLowerCase() == "password") { alert('Access Granted'); window.open('protectedpage.html'); break; } testV+=1; var pass1 = prompt('Access Denied - Password Incorrect, Please Try Again.','Password'); } if (pass1.toLowerCase() !="password" & testV ==3) history.go(-1); return " "; } </SCRIPT> <CENTER> <FORM> <input type="button" value="Password Button Text" onClick="passWord()"> </FORM> </CENTER> |