TR 2890

You might also like

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

<!

DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
p {
background-color: blue;
color: white;
}

p:first-child {
background-color: yellow;
color: red;
}
</style>
</head>

<body>
<!-- Write html and css code to style a paragraph inside a div which contains 5
other paragraphs. The first paragraph must have background color yellow and text
color red. The other paragraphs must have background color blue and text color
white. The HMTL is written below for your reference. Do not change this html -->
<div>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Expedita
explicabo consectetur dicta fuga ea at
vitae suscipit, repellendus illum deleniti laboriosam ipsa
distinctio.</p>
<p>I am another para</p>
<p>I am also another para</p>
</div>
<div>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Expedita
explicabo consectetur dicta fuga ea at
vitae suscipit, repellendus illum deleniti laboriosam ipsa
distinctio.</p>
<p>I am another para</p>
<p>I am also another para</p>
</div>
</body>

</html>
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Distinctio nulla animi
praesentium possimus consequuntur beatae, repudiandae quisquam. Porro, quos quis!

You might also like