Untitled

<
 avatar
user_6851902
plain_text
2 years ago
489 B
2
Indexable
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <link rel="stylesheet" href="styles.css">
    <title>Day 2 Homework</title>
  </head>
  <body>
    <h1>Day 2 Homework</h1>
    <div>First Div</div>
    <div>2nd div</div>
    <div>3rd div</div>
    <div>4th div</div>
  </body>
</html>


div {
    background-color: #0000ff;
    margin: 10px;
}