JSFiddle - React, Tailwind, and code Playground

by EvanPham

HTML

<ul>
<li>Snuggle up to your fur baby - close ups are best.</li>
<li>Gaze into their eyes - take your photo at eye level with your pet.</li>
<li>Don’t stun your pet with a flash - take your photo in natural daylight.</li>
<li>Keep it original - upload the original photo of your pet, rather than a screenshot or a photo of a photo.</li>
<li>Tempt them with a treat if you have to - try to get your pet to sit or stay still, so there's no blur.</li>
<li>Get all the floppy bits - make sure long ears aren’t out of the frame.</li>
</ul>

CSS

body {
  color: #6618e2;
}
ul {
  list-style: none;
}
li {
  position: relative;
  padding-left: 20px;
}
li:before {
  content: '\2713';
  position: absolute;
  top: 0;
  left: 0;
}