Create links
without
the underline |
<HEAD>
<STYLE TYPE="text/css">
<!--
a {text-decoration: none;}
-->
</STYLE>
</HEAD> |
|
Create links
with a highlighted background |
<HEAD>
<STYLE
TYPE="text/css">
<!--
a:hover{background-color:#ff0000;}
-->
</STYLE>
</HEAD> |
|
No
Margins |
<STYLE
TYPE="text/css">
<!--
BODY {margin: 0}
-->
</STYLE> |
Create marquees
(moving text) |
<marquee bgcolor = yellow>
Welcome to my realm on the Net!
</marquee> |
Allow people to
download
files from your site |
Please Right-Click then Save to
<A HREF="http://ufuweb.com/myfile.zip">
Download the Graphics Set Zip File</A> |
Describe your
links
with ToolTips |
<A
HREF="http://www.ufuweb.com"
TITLE="Your resource for web design!"> |
|
Open a link in a
new browser window |
<a
href="http://YourChoice.COM" target="Resource
Window">Yourchoice.COM</a> |
Preload your
graphics
for smoother browsing |
<SCRIPT
LANGUAGE="JavaScript1.1">
img1 = new Image
img1.src = "Image1.gif"
img2 = new Image
img2.src = "Graphic1.gif"
</SCRIPT> |
|
Create text
roll-overs |
<H1
onmouseover="this.style.color='red';"
onmouseout="this.style.color='';">Make me red</H1> |
Redirect your
visitors
to your new site |
<META
HTTP-EQUIV="refresh" CONTENT="10;URL=http://www.YOURNEWSITE.com/"> |