简体   繁体   中英

img tag not showing image

I created a text file using notepad with the following content, and save it with a html extension. Then I open it in browser. The image doesn't show. When I put the image URL in the browser the image shows up, so I know my link is correct. What am I missing here? Thanks in advance for your answer.

<!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;"/>

you've incorrectly typed the src attribute.

change this:

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

to this:

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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