In HTML code, is it possible to have the underline of a link ...?

....one color and the text another color? If so how would I change this code? <br style="font-family: Arial;"> <a href="http://www.nal.usda.gov/fnic/foodcomp/Data/Other/JAFC_52_4026-4037.pdf" target="_top"><span style="font-family: Arial;">Antioxidant Strength Of Plant Foods (.gov, .pdf)</span></a> Thanks

Public Comments

  1. Place the target between this code <U> </U>
  2. Use CSS. body { background-color: black; text-color: white; } a { text-color: blue; }
  3. yes it's possible. you have to define in the <body> section. I can't remember the exact details but, you can define in there the general text and links color. Looking at your code, you might be able to define it right after that style in the br... I don't know if you can do it for an individual link, did you try simply <u> ... </u> underlining it?
Powered by Yahoo! Answers