New Updates!

* Template Must Be:  

 

- Golden Gate (Any Colour)

- Transparent (any Colour)

-Music (any One)

 

If You Know Any Other Templates That Work With This Code, Please Notify us In The Guestbook.

 

 

<form name="BackgroundColor"
method="post">
<input type="button"
OnClick="document.bgColor='FF0000';
"value="Red">
<input type="button"
OnClick="document.bgColor='FF9900';
"value="Orange">
<input type="button"
OnClick="document.bgColor='FFFF00';
"value="Yellow"></form>

<form name="BackgroundColor"
method="post">
<input type="button"
OnClick="document.bgColor='00FF00';
"value="Green">
<input type="button"
OnClick="document.bgColor='0000FF';
"value="Blue">
<input type="button"
OnClick="document.bgColor='9900CC';
"value="Purple"></form>

<form name="BackgroundColor"
method="post">
<input type="button"
OnClick="document.bgColor='000000';
"value="Black">
<input type="button"
OnClick="document.bgColor='FFFFFF';
"value="White">
<input type="button"
OnClick="document.bgColor='999999';
"value="Grey"></form>

<form name="BackgroundColor"
method="post">
<input type="button"
OnClick="document.bgColor='FF99FF';
"value="Pink">
<input type="button"
OnClick="document.bgColor='996633';
"value="Brown">
<input type="button"
OnClick="document.bgColor='CCCC33';
"value="Gold"></form>

<form name="BackgroundColor"
method="post">
<input type="button"
OnClick="document.bgColor='CCCCCC';
"value="Silver">
<input type="button"
OnClick="document.bgColor='999933';
"value="Bronze">
<input type="button"
OnClick="document.bgColor='FFFFFF';
"value="Regular"></form>

 

--------------------------------------- 

 

 Radio Button reply

 

Yes! No!

 

<!--StartFragment--><form>Yes!
<input type="radio"
onClick="alert(Your Button Reply Text Here)">
No!
<input type="radio"
onClick="alert!(Your Button Reply Text Here)">

---------------------------------------

 

 Change Title (Mouseover)

 

Change my Title

 

<a href=""
onmouseover="var title= prompt('TEXT');
document.title=title">LINK TEXT</a>

------------------------------------------------

 

Link Text button

 

 

 <INPUT TYPE="button"
VALUE="TEXT HERE"
onClick='alert("TEXT")'></FORM>

 

 

-------------------------------------------------------------------

Pop-up Background Colour Changer (mouseover)

 

TEXT HERE

<a href=""
onMouseOver="var bg = prompt('TEXT');
document.bgColor=bg">
TEXT HERE</a>

 

--------------------------------------------------------------------------

 

Pop-Up On Entrance OF Website:

<SCRIPT language="JavaScript">alert("YOUR TEXT HERE") </SCRIPT

---------------------------------------------------------------------------

Pop-up On Exit Of Site:

<BODY onUnload="alert('YOUR TEXT HERE');">

--------------------------------------------------------------------------

Pop-Up With Cancel Option:

<SCRIPT language="JavaScript">confirm("TEXT HERE")</SCRIPT>

--------------------------------------------------------------------------

 

Mouse-over Text Link:

Link Text Here

 

<!--StartFragment--><a href="
"onmouseover="parent.location='Your Website  Here'">
Link Text Here</a>

 

 

 

 

 

 

 

<SCRIPT language="JavaScript">
<!-- Script courtesy of http://www.freewebs.com/html-supply - Great Free HTML Codes from HTML-Supply
var current = 0
var x = 0
var speed = 100
var speed2 = 100
function initArray(n) {
this.length = n;
for (var i =1; i <= n; i++) {
this[i] = ' '
}
}
typ = new initArray(4)
typ[0]="Your First Line of Text Here"
typ[1]="Your Second Line of Text Here"
typ[2]="Your Third Line of Text Here"
typ[3]="Your Fourth Line of Text Here"
function typewrite() {
var m = typ[current]
window.status = m.substring(0, x++) + ""
if (x == m.length + 1) {
x = 0
current++
if (current > typ.length - 1) {
current = 0
}
setTimeout("typewrite()", speed2)
}
else {
setTimeout("typewrite()", speed)
}
}
typewrite()
// -->
</SCRIPT>