Examples of HTML text to insert on various pages:

Link to working in HTML
http://www.boogiejack.com/html_tutorials.html


Make the homepage background stationary:
<body   background="back.jpg"   bgproperties="fixed">


Change all links to html name or directory/html name
www.dreanged.com/Europe/index.html can be written as just Europe/index.html


Open New Window
<a href="http://www.boogiejack.com" target="_blank">Boogie Jack's</a>

Notice we only added the target="_blank" to a standard hyperlink.


Create an email link with the Subject and Body already written:
<a href="mailto:dreanged@hotmail.com?subject=Your DReanged Page&body=I want more info from your personal page!">write me</a>

or for the sales page:
<a href="mailto:dreanged@hotmail.com?subject=Daniel Rea Photo Sales&body=Photo #:       Photo Size:     Qty:">write me</a>


Refresh
REDIRECT Code
Just paste this into the HEAD section of your HTML page:
<meta http-equiv="Refresh" content="10; URL=http://www.dreanged.com">



NO RIGHT CLICKING
Add This Anywhere On Your Page
<SCRIPT LANGUAGE="JavaScript1.1">
function stopthief(ie) {
var warning = "To purchase any photos on this page,
please email me using the link below.";
if (navigator.appName == 'Netscape' && ie.which == 3) {
alert(warning);
return false;
}
else
if (navigator.appName == 'Microsoft Internet Explorer' &&
event.button==2) {
alert(warning);
return false;
}
return true;
}
document.onmousedown = stopthief;

</SCRIPT>


Transition Effects (put this line in the HEAD section)
<META http-equiv="Page-Enter" content="revealTrans(duration=2, Transition=12)">
The various effect:

1 Shrinking Box
2 Growing Box
3 Shrinking Circle
4 Growing Circle
5 Wipes Up
6 Wipes Down
7 Wipes Right
8 Wipes Left
9 Right-moving stripes
10 Downward-moving stripes
11 Right-moving boxes
12 Downward-moving boxes

13 Dissolve Screen
14 Horizontal Curtain Closing
15 Horizontal Curtain Opening
16 Vertical Curtain Closing
17 Vertical Curtain Opening
18 Wipe Away, Down and Left
19 Wipe Away, Up and Left
20 Wipe Away, Down and Right
21 Wipe Away, Up and Right
22 Horizontal Bars Dissolve Screen
23 Vertical Bars Dissolve Screen
24 Random Effect, for the Adventurous!