Cześć. Mam taki kod:

.heart {
  background-color: inherit;
  display: inline-block;
  height: 30px;
  margin: 0 10px;
  position: relative;
  top: 0;
  transform: rotate(-45deg) scale(1);
  width: 30px;
  animation-name: example;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}

.heart:before,
.heart:after {
  content: "";
  background-color: inherit;
  border-radius: 50%;
  height: 30px;
  position: absolute;
  width: 30px;
}

.heart:before {
  top: -15px;
  left: 0;
}

.heart:after {
  left: 15px;
  top: 0;
}

Nie znam się na CSS ale sądzę, że to nie jest jakieś bardzo skomplikowane zadanie. Chciałem umieścić w tym serduszku imię "Asia". Proszę o pomoc. Dziękuję bardzo. Pozdrawiam.

Kuba