<h1>this is a bordered h1 tag</h1>
<h2>this is a bordered h2 tag</h2>

/* this is the inneficient way to display border tags */
h1 {
  border-width: 2px;
  border-style: solid;
  border-color: blue;
}

/* this is the more efficient way to display border tags */

h2 {
  border: 5px dashed red;
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.