<link href="https://fonts.googleapis.com/css?family=Karla:400,700" rel="stylesheet">
<ul class="bc">
  <li class="bc_item bc_complete">Cart</li>
  <li class="bc_item">Customer Information</li>
  <li class="bc_item">Shipping Method</li>
  <li class="bc_item">Payment Method</li>
</ul>
body {
  font-family: 'Karla';
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}

.bc {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
  width: 100%;
  max-width: 100%;
  height: 120px;
  counter-reset: breadcrumb;
  position: relative;
}

.bc:before {
  position: absolute;
  top: 23px;
  left: 12.5%;
  content: '';
  width: 75%;
  height: 1px;
  background: black;
}

.bc .bc_item {
  float: left;
  padding-top: 60px;
  width: 25%;
  text-align: center;
  position: relative;
}

.bc .bc_item:after {
  counter-increment: breadcrumb;
  content: counter(breadcrumb);
  position: absolute;
  top: 0px;
  left: calc(50% - 23px);
  width: 40px;
  height: 40px;
  text-align: center;
  border: 3px solid black;
  border-radius: 50%;
  line-height: 40px;
  background: white;
}

.bc .bc_complete:after {
  background: black;
  color: white;
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.