Tell us what’s happening:
Describe your issue in detail here.
Your new div elements should be within the div with the class container . Your code so far
<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Colored Markers</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>CSS Color Markers</h1>
<!-- User Editable Region -->
<div class="container"></div>
<div class="marker">
<div class="container"> </div>
<div class="marker"> </div>
<div class="marker"> </div>
<!-- User Editable Region -->
</body>
</html>
The closing div here still needs to go on the bottom. You want all the other divs to be inside the containers div. This </div> needs to be the very last thing and not at the top
the three marker divs all need closing tags </div> so add the closing divs to the first two marker classes, and then you can actually just add another closing div after this line
<div class="marker"></div>
Add another closing div after this line and it should be good. As well as adding the closing divs to the other two marker divs
<div class="container">
<div class="marker">
</div>
</div>
<div class="marker">
<div class="marker">
</div>
</div>
I guess I just am not comprehending what inside container means
Your new div elements should be within the div with the class container.
Your last code was the closest so far. So what I mean by inside the div (or nesting) is this
<div class="top">
<div> one </div>
<div> two </div>
<div> three </div>
<div> four </div>
</div> //this is the closing div for the div with the class top
In the this example, I have four divs and they are inside the div with the class of "top. They are inside (or nested) the top div because they are in between the top divs opening and closing tag. Another example
<div class="example"> //opening div tag
//anything in here is considered inside the div (or nested)
</div>//closing div tag for the top div
So lets take a look back at your closest code
` <div class="container"> //this is top div
<div class="marker">//needs closing tag
<div class="marker">//needs closing tag
<div class="marker"></div>`//this line is ok
//you need a closing div here for the top div.
//adding a close div here makes sure that everything is inside the top div