How to make underlined/bolded/link font color different in a layout code?
I'm making a quizilla quiz layout & i dont know how to make bold ect. text different colors.
any help?
(HTML Code)
Public Comments
- The proper way is to use the <style> tag in conjunction with CSS. Check Google for CSS tag lists and information on the <style> tag.
- I am not quite sure what you mean "different in a layout code", but using css you can do: a { color: red; font-weight: bold; text-decoration: underline; } or inserting in html somewhere between "<a" and first following ">" style="color: red; font-weight: bold; text-decoration: underline;"
- Like this: <font color="#FF0000"><u><strong> SOME TEXT GOES HERE </strong></u></font> Take out the 'U' if you dont want it underlined and take out the 'strong' if you dont want it bold. For different colors, use different color codes. The one I gave is red. You can find all sorts of color codes here: http://html-color-codes.com/
Powered by Yahoo! Answers