<section>
  <h2>CHARACTER DETAILS</h2>
  <div id="character">
    <table>
      <tr>
        <th>SIZE</th>
      </tr>
      <tr>
        <td>- - -</td>
      </tr>
      <tr>
        <th>WEIGHT</th>
      </tr>
      <tr>
        <td>- - -</td>
      </tr>
      <tr>
        <th>HEIGHT</th>
      </tr>
      <tr>
        <td>- - -</td>
      </tr>
      <tr>
        <th>BUILD</th>
      </tr>
      <tr>
        <td>- - -</td>
      </tr>
    </table>
    <img src='https://images.unsplash.com/photo-1665238067127-717f02322cfb?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3wzMjM4NDZ8MHwxfHJhbmRvbXx8fHx8fHx8fDE3MzcyODg4Mzh8&ixlib=rb-4.0.3&q=80&w=400' alt=''>
    <table>
      <tr>
        <th>PELT COLOR</th>
      </tr>
      <tr>
        <td>- - -</td>
      </tr>
      <tr>
        <th>EYE COLOR</th>
      </tr>
      <tr>
        <td>- - -</td>
      </tr>
      <tr>
        <th>MARKINGS</th>
      </tr>
      <tr>
        <td>- - -</td>
      </tr>
      <tr>
        <th>MUTATIONS</th>
      </tr>
      <tr>
        <td>- - -</td>
      </tr>
    </table>
  </div>
</section>
<section>
  <h2>PERSONALITY</h2>
</section>
* {
  margin: 0;
  box-sizing: border-box;
}
body {
  background: #e4e4e4;
}
section {
  margin: 20px;
  text-align: center;
}
h2 {
  font-size: 1rem;
  background: #b7b7b7;
  padding: 5px;
  text-align: center;
}
#character {
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
  padding-top: 20px;
}
table {
  margin: 10px 0;  /* for wrap */
  width: 150px;
}
th {
  color: #444;
  background-color: white;
}
td {
  background: transparent;
}
#character > img {
  max-height: 250px;
}
Run Pen

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.