簡體   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