<!DOCTYPE html>
<html>

  <head>
    <link rel="stylesheet" href="style.css">
    <script src="script.js"></script>
  </head>

  <body>
    <div class="container">
      <div class="parent">
        <div class="child">
          Hello World!
        </div>
      </div>
      <div class="parent">
        <div class="child">
          Hello World!
        </div>
      </div>
    </div>
  </body>

</html>
.container {
  width: 584px;
  height: 300px;
  border: 1px dashed navy;
  border-radius: 15px;
}

.parent {
  width: 200px;
  height: 200px;
  background-color: green;
  border-radius: 15px;
  margin-top: 50px;
  display: inline-block;
  margin-left: 60px;
}

.child {
  color: white;
  font-family: Arial;
  font-size: 22px;
  margin-top: 87px;
  margin-left: 40px;
}