Highlight the Background of Text: <span style="background-color:ffffcc;">Wow, that's yellow!</span> Wow, that's yellow!Align Images to Absolute Vertical Center of Text: <img src="image.gif" align="absmiddle">
Highlight Background Colour of Links (embed in head tag): <STYLE TYPE="text/css">a:hover{background-color:red;}</STYLE>
Timed redirect to another page automatically: <META HTTP-EQUIV="refresh" CONTENT="10; URL=http://www.yoursite/newpage.htm">
Display messages in browser status bar on link hover: <a href="index.htm" OnMouseOver="self.status='Go to my homepage!'; return true" onmouseout="self.status=''; return true">Visit this page.</a>
Adding a Title attribute to your links creates a mini-popup description: <A HREF="http://FreeServices.pattayacitythailand.com/webtools/" TITLE="Cool Website Tools!">Text</a> Text
Mask your published email addresses from collection by spiders: <script language="JavaScript"> <!-- // Hide var showtext = "Email Me"; var mailpart1 = "webmaster"; var mailpart2 = "mysite.com"; document.write("<a href=" + "mail" + "to:" + mailpart1 + "@" + mailpart2 + ">" + showtext + "</a>") //--> </script>
|