Question 13
Consider the following HTML and external CSS code.
File name: style.css
body{background-color: lavender; text-align: center;}h2{font-style: normal; font-size: 30px; color: #f08080;}p{font-size: 20px;}.blue{color: green;}.red{color: blue;}.green{color: red;}File name: index.html
<!DOCTYPE html><html> <head> <link href="style.css" rel="stylesheet" type="text/css" /> </head> <body> <h2>Welcome to IIT</h2> <p class="blue">I am blue color </p> <p class="red">I am red color </p> <p class="green">I am green color </p>
</body></html>How the heading and paragraph are printed in the output?