**
I need a bit more corrections around the div property mostly please
Your code so far
/* file: index.Ext.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>
<div class="container">
<div class="marker red">
<div class="cap"></div>
<div class="sleeve"></div>
</div>
<div class="marker green"><div class="marker red"></div>
</div>
<div class="marker blue"><div class="marker red"></div>
</div>
</div>
</body>
</html>
/* file: styles.Ext.css */
<!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>
<div class="container">
<div class="marker red">
<div class="cap"></div>
<div class="sleeve"></div>
</div>
<div class="marker green"><div class="marker red"></div>
</div>
<div class="marker blue"><div class="marker red"></div>
</div>
</div>
</body>
</html>
Your mobile information:
SM-A505F - Android 9 - Android SDK 28
Challenge: Learn CSS Colors by Building a Set of Colored Markers - Step 85
Link to the challenge: