Description | Example | Code |
Transparant button | <BUTTON STYLE="background-color: transparent;" onClick="window.location='whatever.html'"> <font color="#ff0000" size="2">Click Me</font></BUTTON> |
|
Change color of text | Your Text |
<H1 onmouseover="this.style.color='red';" onmouseout="this.style.color='';">Your Text</H1> |
Change look of form | <form> <input TYPE="submit" VALUE="Submit" NAME="submit" style="background-color: rgb(0,0,0); color: rgb(51,255,0); font-weight: bold; border-left: 1px solid rgb(255,255,255); border-right: 1px double rgb(153,153,153); border-top: 1px solid rgb(255,255,255); border-bottom: 1px double rgb(153,153,153)"> <input TYPE="reset" VALUE="clear" NAME="clear" style="background-color: rgb(0,0,0); color: rgb(255,0,51); font-weight: bold; border-left: 1px solid rgb(255,255,255); border-right: 1px double rgb(153,153,153); border-top: 1px solid rgb(255,255,255); border-bottom: 1px double rgb(153,153,153)"> <input TYPE="text" NAME="text" SIZE="18"
VALUE style="background-color: rgb(0,0,0); font-family: Arial; font-size:
10pt; color: rgb(51,255,0); font-weight: plain"> |
|
Page borders | See this page borders | <body style="border-right: thick groove rgb(253, 228, 191); border-left:
thick groove rgb(253, 228, 191); border-top: thick groove rgb(253, 228,
191); border-bottom: thick groove rgb(253, 228, 191)"> |
Image bullets |
|
<ul style="list-style-image: url(yourimage1.gif)"> <li>CSS Style-Bullets <li>Jazz up your list's default bullets <li>Add any image you want <li>Easy setup <li style="list-style-image: url(yourimage2.jpg)">Netscape defaults </ul> |
Smaller buttons | <INPUT TYPE="submit" NAME="submit" VALUE="submit" style="color:ff0033;background-color:33ff00;font-size:8pt"> | |
Almost no border around the window | Example click here | <body scroll="no" border="no" style="border-style: groove; border-width: 0" > |