First is the code that I want to change.
<style>
  h1::after {
    content: url(sig01.png);
  }
</style>
Second is what I tried, but not working.
<style>
    h1::after {
        content: url(sig01.png);
        display: inline-block;
        width: 200px;
        height: 200px;
    }
</style>
What am I doing wrong?
 
     
    