Learn CSS Colors by Building a Set of Colored Markers - Step 9

Tell us what’s happening:
my div code is not going through

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>

<!-- User Editable Region -->

  <body>
    <h1>CSS Color Markers</h1>
    <div class="container">
  </body>

<!-- User Editable Region -->

</html>
/* file: styles.css */
h1 {
  text-align: center;
}

Your browser information:

Challenge: Learn CSS Colors by Building a Set of Colored Markers - Step 9

Link to the challenge:

div is not self-closing, so you will need to add a closing tag

(post deleted by author)