<ul class="dot">
  <li>ショートケーキ</li>
  <li>オペラ</li>
  <li>フルーツタルト</li>
  <li>シュヴァルツヴェルダー・キルシュトルテ</li>
</ul>
/* style reset */
ul{
  list-style:none;
  margin: 0;
  padding: 0;
}

/* dot */
.dot li{
  position:relative;
  padding-left: 20px;
  margin-bottom: 10px;
}
.dot li:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: tomato;
  position: absolute;
  top: 7px;
  left: 0;
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.