0
I have an AMP page that I load the logo image by inserting the link inside the img tag, so:
<amp-img src="//i2.wp.com/www.meusite.com.br/wp-content/uploads/lgootipo.png" alt="logotipo" width="356" height="137">
However, what would be the best practice to upload this image ?
I thought of calling the picture with the background-image: url("...")
within the tag style
It will be better to leave it the way it is or load the image with CSS ??
If you are concerned about Performance x Quality your answer is here: https://developers.google.com/web/fundamentals/performance/optimizing-content-efficiency/image-optimization
– hugocsl