May 13, 2004 #1 alfalf Programmer Joined Mar 6, 2003 Messages 155 Location 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 Joined Jun 16, 2003 Messages 849 Location 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 Joined Mar 6, 2003 Messages 155 Location BA Thanks! Thats easy Upvote 0 Downvote