Question 11
Consider the following HTML document with internal CSS and inline styles.
<!DOCTYPE html><html><head> <style> p { color: blue; font-size: 16px; font-weight: normal; } .highlight { color: red; font-weight: bold; } #special { color: green; font-size: 20px; } p.highlight { color: orange; } </style></head><body> <p class="highlight" id="special" style="color: purple; font-size: 14px;"> Paragraph 5 </p></body></html>What will be the final color and font-size for "Paragraph 5"?
Color: green, Font-size: 20px
Color: orange, Font-size: 14px
Color: purple, Font-size: 20px
Color: purple, Font-size: 14px