2 img src,显示一个图像而另一个图像不显示

时间:2016-10-06 12:15:01

标签: html

在html编程类中,我尝试制作一个html文件并显示两个图像。由于任何原因,我和我的老师无法确定,有一个图像没有显示。

你能告诉我为什么会这样吗?

<!DOCTYPE html>
<html Lang="es">
    <head>
        <meta charset="UTF-8">
        <title>Title</title>
    </head>
    <body>
        <div>
            <img scr="https://www.sublimetext.com/images/windows_48.png" />
    </div>
    <div>
        <a href="http://www.google.com"><img src="https://www.gstatic.com/images/branding/googlelogo/2x/googlelogo_color_284x96dp.png"></a>
    </div>
</body>

1 个答案:

答案 0 :(得分:1)

你拼错了src,你有scr

应为<img src="https://www.sublimetext.com/images/windows_48.png" />