繁体   English   中英

img标签未显示图像

[英]img tag not showing image

我使用记事本创建了一个文本文件,其中包含以下内容,并使用html扩展名保存。 然后我在浏览器中打开它。 图片未显示。 当我将图像URL放在浏览器中时,图像就会显示出来,因此我知道我的链接是正确的。 我在这里想念什么? 预先感谢您的回答。

<!DOCTYPE html>
<html>
<body>

<p>Image doesn't show</p>

<img scr="https://www.findtaxpro.com/Content/img/logo.png" style="width:90px; height:90px;"/>

</body>
</html>
<img scr="https://www.findtaxpro.com/Content/img/logo.png" style="width:90px; height:90px;"/>

更正拼写

<img src="https://www.findtaxpro.com/Content/img/logo.png" style="width:90px; height:90px;"/>

您输入的src属性错误。

改变这个:

<img scr="https://www.findtaxpro.com/Content/img/logo.png" style="width:90px; height:90px;"/>

对此:

<img src="https://www.findtaxpro.com/Content/img/logo.png" style="width:90px; height:90px;"/>

 <!DOCTYPE html> <html> <body> <p>See Image below</p> <img src="//www.findtaxpro.com/Content/img/logo.png" style="width:90px; height:90px;"/> </body> </html> 

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM