body {background-color: lightyellow;
}

p::before {
  content: "Esto es importante: ---->" ;
   background-color: turquoise;
  color: red;
  font-weight: bold;
}

h2::before {
  content: "Esto es también importante: ---->" ;
   background-color: orangered;
  color: blueviolet;
  font-weight: bold;
}

h3::before {
  content: url('img/dedoderecha.png')
}
h3::after {
  content: url('img/dedoizquierda.png')
}

q::before {
  content: "«";
  color: rebeccapurple;
}
q::after {
  content: "»";
  color: darkorange;
}