May 13, 2004 #1 alfalf Programmer Mar 6, 2003 155 BA Hello all. Is it possible to have different hyperlink styles on one page? For example, is it possible to colour one link in white (to put them on black background) and one with blue colour? Thanks for any suggestions.
Hello all. Is it possible to have different hyperlink styles on one page? For example, is it possible to colour one link in white (to put them on black background) and one with blue colour? Thanks for any suggestions.
May 13, 2004 #2 dkdude Programmer Jun 16, 2003 849 DK Hi, Try this: Code: <HTML> <HEAD> <TITLE>Link Colors</TITLE> <STYLE> .blue { color : blue; } .red { color : red; } </STYLE> </HEAD> <BODY> <A HREF="" CLASS="blue">Blue!</A> <A HREF="" CLASS="red">Red!</A> </BODY> </HTML> Good Luck §;O) Jakob Upvote 0 Downvote
Hi, Try this: Code: <HTML> <HEAD> <TITLE>Link Colors</TITLE> <STYLE> .blue { color : blue; } .red { color : red; } </STYLE> </HEAD> <BODY> <A HREF="" CLASS="blue">Blue!</A> <A HREF="" CLASS="red">Red!</A> </BODY> </HTML> Good Luck §;O) Jakob
May 13, 2004 Thread starter #3 alfalf Programmer Mar 6, 2003 155 BA Thanks! Thats easy Upvote 0 Downvote