Free Guides
Language Tutorials

HTML ( Hyper Text Markup Language )
Other fun stuff for your page
In this final part, I'll show you some miscellaneous cool stuff you can add to your page.
-Adding roll-over text links in IE 4.x:
If you go back to the frontpage of this site, you'll notice that whenever you pass your mouse over the links using IE 4, they turn red. You can add this same feature to your page by adding the below code to the <head> section of your page:
<style>
<!--
a:hover {color:red}
-->
</style>
Adding a live clock to your page:
You can impress your surfers with a live clock. Just add the below code to your page:
<form name="Tick">
<input type="text" size="11" name="Clock">
</form>
<script>
<!--
/*Live
clock credit
Website Abstraction (www.wsabstract.com)
Credit must stay intact for use
*/
function show(){
var Digital=new Date()
var hours=Digital.getHours()
var minutes=Digital.getMinutes()
var seconds=Digital.getSeconds()
var dn="AM"
if (hours>12){
dn="PM"
hours=hours-12
}
if (hours==0)
hours=12
if (minutes<=9)
minutes="0"+minutes
if (seconds<=9)
seconds="0"+seconds
document.Tick.Clock.value=hours+":"+minutes+":"
+seconds+" "+dn
setTimeout("show()",1000)
}
show()
//-->
</script>