<h1>Advanced HTML Animals</h1>
    <dl>
        <dt>Llama</dt>
            <dd>Tall, woolly quadruped, pointy ears. Sometimes rideable, but grumpy and spits a lot. Big fan of list items.</dd>
        
        <dt>Anaconda</dt>
            <dd>A very large constrictor snake; travels rapidly by way of anchors to sneak up on his prey.</dd>
        
        <dt>Hippopotamus</dt>
            <dd>His description is bottomless.</dd>
        
    </dl>
h1 {
  font-size: 2rem;
  margin: 0;
  color: purple;
}

dl {
  color: gray;
  margin: 0.5em 0;
}

dt {
  font-weight: bold;
  color: purple;
}
Run Pen

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.