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

I don't understand why my submission give :false. I'm in HTML /Level7/ Lesson4 Multi DIV for body

<!Doctype html>
<html>

<head>
<title> Raymond</title>
</head>

<body>


<div>
<div> Sidebar </div>
<div> Main </div>
</div>


</body>
</html>
by

1 Answer

iamabhishek
Try this:

<!DOCTYPE HTML>
<html>
<head><title>Website</title></head>
<body>
<div style="background-color:orange">
<h1></h1>
<p></p>
</div>
<div>
<div>Sidebar</div>
<div>Main</div>
</div>
</body>
</html>

Login / Signup to Answer the Question.