Find The Output 1

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

Find the Output 1

Send Feedback
A HTML code is written as:
<!DOCTYPE html>
<html>
<head>
<style>
p{
background-color: red;
height: 150px;
width: 200px;
font-size: 16px;
}
</style>
</head>
<body>
<p style="height: 100px; font-size: 20px; background-color: yellow;">This is a paragraph.</p>
</body>
</html>

How would this look in the browser?

Ans: b

You might also like