Question 5
Consider the following HTML code below.
<!DOCTYPE html><html lang="en"> <head> <meta charset="UTF-8"/> <style> body{text-align: center} p{font-size: 30px;font-style: italic;color: black;} .blue{color: green;} .red{color: blue;} .green{color: red;} #myId{color: grey;} </style> </head> <body> <div> <h2>Welcome to IIT</h2> <p class="blue red green">Paragraph 1</p> <p class="red blue green" id="myId">Paragraph 2</p> <p class="green red blue">Paragraph 3 </p> </div> </body></html>How will the browser render the above given HTML file?