<div id="box" class="box"></div>
html, body {
  height: 100%;
}

body {
  display: grid;
  justify-content: center;
  align-content: center;
  
  
}

.box{
  display: grid;
  justify-content: center;
  align-content: center;
  
  width: 250px;
  height: 100px;
  margin: 10px;
  
  border: 3px solid #333;
  font-family: sans-serif;
  font-weight: bold;
}
const box = document.getElementById('box')

box.textContent = "I am a box."

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.