Add background color to each paragraph.
- First paragraph should have
#E9A87C
background color. - Second paragraph should have
#C38D9E
background color. - Third paragraph should have
rgb(64,179,161)
background color.
This task is part of the Full-Stack JavaScript Course
If you have any issues with it, you can ask for community help below the post
Feel free to help others if you’ve already solved the task
index.html
<!DOCTYPE>
<html>
<head>
<title>Browser</title>
</head>
<body>
<h2>Browser</h2>
<p>A computer program that makes it possible for you to read information on the internet.</p>
<p>The most used browsers are Google Chrome, Safari, Firefox and Microsoft Edge.</p>
<p>The first web browser was created in 199</p>
</body>
</html>