Question 6
Consider the following HTML code:
<!DOCTYPE html><html lang="en"><head> <title>Document</title> <style> div { color: blue; } #s1 { color: yellow; } .s2{ color: green; } h3{ color: red; } </style></head><body> <div class="s2" id="s1"><h3>IITM Online BS Degree Program</h3></div></body></html>What is the colour of the printed text “IITM Online BS Degree Program”?
BLUE
YELLOW
GREEN
RED