text links
a text link is easy. all you have to do is put this code in your html.
now if you want that page to open in a new window you add target="new" after the address to the page like this:
image links
ever want your visitor to be able to click on a picture, or button and be able to get to a page you made or a part of your website? well that's where image links come in. do this code:
if you want that picture not to have an ugly purple or blue border around it (the computer automatically does that) then add border=0 after the address of the picture like this:
effects
wanna make your text links do some cooler stuff like flip backwards, change color, blur, etc? sure ya do. but to do so, you have to know a little bit about css. it's just a code you put before your
want some cool effects? the backwards stuff etc? well to make things happen to your links when you hover over them then on this part of the code do one of these in your ahover section. just keep a space between the ;'s.:
1. border:1 solid; border-color:#000000;- Gives you a solid border around the links.
2. border:1 dashed; border-color:#000000;- Gives you a dashed border around the links.
3. border-bottom:1 dashed #000000;- Puts a dashed border on the bottom of links AND images.
4. border-bottom:1 solid #000000;- Puts a solid border on the bottom of links AND images.
5. text-decoration:underline;- Underlines your links.
6. text-decoration:underline overline;- Underlines AND overlines your links.
7. text-decoration:line-through;- Strikes out your links.
8. filter:Invert(strength=3); height:9px;- Inverts the links, making them the opposite color. Looks best with images.
9. filter:dropshadow(color=#000000,offX=1,offY=1); height:7pt;- Gives your links a shadow.
10. filter:shadow(color=#000000,offX=1,offY=1); height:0; Gives links a different, more blurred shadow.
11. filter:blur(add="0",direction="180",strength="2"); height:0;- Blurs the links.
12. filter:fliph; height:0;- Makes links appear backwards.
13. filter:flipv; height:0;- Turns links upsidedown.
14. filter: gray(); height:0- Turns links grey.
15. filter: invert(); height:0- Inverts links, making them opposite colors.
16. filter: mask; height:0- Makes links 100% transparent.
17. filter: wave(strength="1"); height:0 Links turn wavy.
18. height:0;color:000000; filter:wave(add=0,phase=4,freq=5,strength=2);- Makes links wavy.
19. filter:glow(color=000000, strength=5); height:0;- Makes text glow.
20. text-transform:uppercase;- Makes your links all capitals.
21. text-transform:capitalize;- Makes the first letter of the link a capital letter.
22. text-transform:lowercase;- Makes letters lowercase.
23. background-color:000000;- Gives your links a different background color.
24. font-size:7pt;- Changes your font size.
25. font-weight:bold;- Makes links bold.
26. position:relative; left:1px; top:1px;- Moves links 1px from the left and top.
You can use more than one, just keep the semi-colons in so they're separated. Also, feel free to play around with the numbers.
normal link colors
wanna just have normal links that do nothing fancy, and wanna choose your own colors for them and the background color and the text color? so this after your