<!-- load an alternative image (even a void one?) based on <picture>, <source>, and media queries --><style>@media(max-width:768px){img{display:none;}}</style><picture><sourcemedia="(max-width: 768px)"srcset="..."/><imgsrc="..."/></picture>
<!-- setting the image source directly with CSS as a background? means you can do whatever... just one of the many ways, others are bit spotty --><divid="img"></div><style>#img{width:88px;height:31px;}@media(max-width:100px){#img{display:none;}}@media(max-width:300px){#img{background-image:url('small-screens.png');}}@media(min-width:300px){#img{background-image:url('large-screens.png');}}</style>