Using browser default CSS, hyperlinks are displayed with a blue underline. Suppose you are writing a website and instead, you wish the default to be bold red font, with no underline. What would you put in your stylesheet?
Now suppose that when the user hovers their cursor above the hyperlink you want the text to turn green. What would you add to your stylesheet?
Suppose you have two CSS rule sets defined .bold {font-weight: bold; } and .bordered {border: 2px solid #CCC;} Write an additional rule-set that selects elements that are both .bold and .bordered and changes the font color to red?