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

Level 7 lesson 7

level 7 lesson 7 can not understand
by

2 Answers

kshitijrana14
Try this one:

<!DOCTYPE HTML>
<html>
<head><title>Website</title></head>
<body>
<div style="background-color:orange">
<h1></h1>
<p></p>
</div>
<div style="overflow:auto">
<div style="width:25%;float:left">Sidebar</div>
<div style="width:75%">Main</div>
</div>
</body>
<hr>
<div style="text-align:center">
@studytonight
</div>
</html>
divyalonari
level 7 lesson 7 Javascript

let fruit1 =['Mango', 100];
let fruit2 =['Apple', 50];

let fruitList =[fruit1, fruit2];
// log the fruitList array on console
console.log(fruitList);

Login / Signup to Answer the Question.