Question 7
Consider the following code:
<!DOCTYPE html><html><head> <style> p { color: blue; } #highlight { color: green; } .important { color: red; } </style></head><body> <p class="important" id="highlight">This is a paragraph.</p></body></html>What will be the color of the paragraph text when rendered in a browser?
Blue
Green
Red
The browser default (black)