Después del icono CSS
/* CSS ::after pseudo-element is used to insert some additional content at the end of
the element’s own content. */
h1::after{
content: url('images/flower.jpg');
}
Glorious Gnat