It’s helpful if you can learn to describe the issues you’re facing in your own words. Not only is it a vital skill in coding but also, the more you say, the more we can help!
You should have three ‘marker’ div elements nested inside the ‘container’ div. Here’s an example of how you could nest three similar elements inside another:
<div class="example">
<p>Here is some text</p>
<p>Here is a bit more text</p>
<p>...and a little bit more...</p>
</div>
Note that each of the nested items are separately nested within the outer div.
@Jiangchad If you have an issue with your code, it’s best to create your own topic for it to avoid confusion. Please click on the Help icon, which appears after you have submitted incorrect code three times. This will create a forum post which includes your full code, a direct link to the challenge and an opportunity to describe your issue in your own words.
You have a line of closing div tags in the middle of your code…
Inside your ‘container’ element you should have three separate div elements, each with an opening div tag followed immediately by a closing div tag (similar to the example which I gave you).