Question 14
Consider the HTML code below, what will be the text color of the paragraph?
<!DOCTYPE html><head> <style> p { color: blue; } p.important { color: red; } #main p.important { color: green; } </style></head><body> <div id="main"> <p class="important">Hello World!</p> </div></body></html>Blue
Red
Green
Black