Here is what I have, but the boxes are going before the text, need them after
.box {
  float: left;
  height: 20px;
  width: 20px;
}
.red {
  background-color: red;
}
.blue {
  background-color: blue;
}
.green {
  background-color: green;
}<ul>
  <li>Red<span class="box red"></span></li>
  <li>Green<span class="box green"></span></li>
  <li>Blue<span class="box blue"></span></li>
</ul> 
    