Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

How to solve lesson 7 exersise3

I followed the instruction direct as mentioned in the instruction my code runs perfectly as expected but it still says change the background color of <div> to Orange
by

1 Answer

kshitijrana14
Try this one : Level 3 and lesson 7 HTML -COURSE

<!doctype html>
<html>
<head>
<title>My Webpage Title</title>
</head>
<body>
<h3 style="background-color:Turquoise">Do you know?</h3>
<hr>
<p>Human thigh bones are stronger than concrete.</p>
<p style="background-color:pink">Earth is the only planet not named after a god.</p>
</body>
</html>

Login / Signup to Answer the Question.