Considere o trecho de código fonte HTML5/CSS3 a seguir:
<!DOCTYPE html><html><body>
<img src="imagem.jpg" width=300px height=150px>
</body></html>
Assinale a alternativa que pode substituir o trecho “<img src="imagem.jpg" width=300px height=150px>”, produzindo exatamente as mesmas configurações de largura e altura da imagem como definido no trecho de código:
<img src="imagem.jpg" attributes="width:300px;height:150px;">
<img src="imagem.jpg" css="width:300px;height:150px;">
<img src="imagem.jpg" size="width:300px;height:150px;">
<img src="imagem.jpg" style="width:300px;height:150px;">