HTML and CCS Help

Color Picker


Click a box and the hexadecimal color will be shown below.

How do I add an image? To had an image to your page/site...use the following tag. Replace 'blah' with the name of your image file and '.gif' if necessary with the format of your image ('.jpg' or '.bmp', etc.) <img src="blah.gif">
How do I make hyperlink images?To make an image link to a page, use the following tag (replace 'blah' with the url of the page you are linking to and 'blah.gif' with your image url): <a href="blah"><img src="blah.gif"></a>
How do I add a description to a hyperlink image?To make a description show up when the mouse is over an image link, add 'alt="yourdescription"' like this: <a href="blah" alt="yourdescription"><img src="blah.gif"></a>
How do I make a hyperlink image open the link in a new window?Simple. Add the following tag 'target=_blank' or 'target=New' like this: <a href="blah" target=New><img src="blah.gif"></a>
How do I add a text link? To add a text link to your page/site...use the following tag and replace 'blah' with the url of the page/site you are linking to. Also, replace 'whatlinksays' with what you want the link to say! <a href="blah">whatlinksays</a>
How do I make a text link open in a new window? If you want the link to open in a new window...add 'target=New', like the following example: <a href="blah" target=New>whatlinksays</a>
How do I add a description to a text link?To make a description show up when the mouse is over a text link, add 'title="yourdescription"' like this (replace 'blah' with the url of the page you are linking): <a href="blah" title="yourdescription">whatlinksays</a>
How do I get rid of the underline on my text links? To get rid of the underline under your text links, add the following code to the <head> and before the </head> of your HTML document. <style type="text/css"> <!-- A:link {text-decoration:none} A:visited {text-decoration:none} --> </style>
How do I change the color of individual text links? Add the following tag, 'style="color: #000000"' like this (replace 'blah' with the url of the page/site you want to link to and '#000000' with the color you want the link to be. Use the color picker at the top of the page): <a href="blah" style="color: #000000">whatlinksays</a>
How do I change the color of all of my links on my page?
How to I make my links change color when the mouse is over it?
How do I change the color of links that have already been visited?
How do I change the color of the active link?
Add the following code between your <head> and </head> tags in your HTML document. Replace yourcolor with the color you want. (Hover=color on mouseover, link=text link, active=active link) Also, if you would like a link to remain underlined, replace none with 'underline' : <style type="text/css"> <!-- A:link { text-decoration: none; color:"#YourColor" } A:visited { text-decoration: none; color:"#YourColor" } A:active { text-decoration: none; color:"#YourColor" } A:hover { text-decoration: none; color:"#YourColor" } --> </style>
How do I make my background transparent?Add the following tag in the body. <BODY STYLE="background-color:transparent">
How do I add a background to my page?Use the following tag in the body. <body background="blah.gif">