DYNAMIC HTML
What is Dynamic HTML? Dynamic HTML is a term used for making Dynamic and Interactive web pages. DHTML combines HTML, JavaScript, the HTML DOM, and CSS. Use the code below to make the words Highlight.
<span style= "background-color: #FFFF00">cool effects like these</span>
instead of sending you to another page I'm just using this one on this page. Have you looked at the code yet? It's so easy to use cool effects like these -- and as for your readers it really keeps them interested. You'll see here in a minute that it doesn't take much (on your part) to IMPRESS the heck out of them.
SCROLLBAR COLORSLet's change the scroll bar colors now. It's simple and easy as pie. Just add a few lines of code into the <HEAD> of your document, like this.
<html> <head> <style> BODY { scrollbar-3d-light-color:#d2e6f8; scrollbar-arrow-color:#ff0000; scrollbar-base-color:ffffff; scrollbar-dark-shadow-color:#000000; scrollbar-face-color:#BDE9FF; scrollbar-highlight-color:#0000ff; scrollbar-shadow-color:#000000} </style> <title>Color Scroll</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body bgcolor="#FFFFFF" text="#000000"> <h1 align="center"><b><font face="Verdana, Arial, Helvetica, sans-serif" color="#FF0000">That's all there is to this, </font></b></h1> <h1 align="center"><font color="#FF0000"><b><font face="Verdana, Arial, Helvetica, sans-serif">but it's o-hhhh so cool! YEH!</font></b></font></h1> <h2 align="center"><b><font face="Verdana, Arial, Helvetica, sans-serif"><br> <font color="#FFCC00">And you can change </font></font></b></h2> <h2 align="center"><b><font face="Verdana, Arial, Helvetica, sans-serif" color="#33FFCC">the colors to </font></b></h2> <h2 align="center"><b><font face="Verdana, Arial, Helvetica, sans-serif" color="#000066">whatever you want!</font></b></h2> <p align="center"> </p> <p align="center"> </p> <p align="center"> </p> <p align="center"> </p> <p align="center"><img src="covers250opt.jpg" width="300" height="382"> </p> </body> </html> Click link to view ![]()
|
Category-ArticlesTags-Dynamic HTML
dhtml dynamic DHTML |