| main | links | information | links to free software |
pictures | HTML tips & tricks |
history |
Always write your HTML tags with CAPITAL letters to improve readability..
If you want a dialog box to appear when a page is loaded, add this right after your <BODY> tag:
<script language="JavaScript">
alert("This is the message that will appear");
</script>
If you want text to appear on the viewers statusbar right after the page is loaded, add this line inside your <BODY> tag:
ONLOAD="window.defaultStatus='HTML Tips & Tricks'"
If you don't want your links to be underlined, add this to your document, inside your <HEAD> tag:
<STYLE>
A:Link {text-decoration:none}
A:Visited {text-decoration:none}
</STYLE>
Example:
<HEAD>
<TITLE>HTML Tips & Tricks</TITLE>
<STYLE>
A:Link {text-decoration:none}
A:Visited {text-decoration:none}
</STYLE>
</HEAD>
If you want a link to open in a new window, add this inside your <A HREF> tag:
TARGET="_blank"
![]()