1

我必须做什么才能让我的图像显示在我的网页上。我正在尝试将图像放入我的 html 文档中。该框显示但不显示图像。这是<img scr="smile.jpg" width="120" height="90"/>我尚未将网页放在互联网上的代码。

<HTML>
<HEAD> 
    <TITLE> Tay first Web page </TITLE>
</HEAD>
<BODY>
<H1 ALIGN="center"> Why do I want to learn to code? </H1>
    <P> I want to learn to code because it will help me develop the skills I need in web development and game development. My goal is to learn how to code in many different languages. It is amazing to me to be able to create something from scratch and making it into your vision.</P>
<H2 ALIGN="center"> Why is coding fun? </H2>
    <P> Computer coding is <STRONG> wonderful.</STRONG> You get to make a web page with whatever info you want and add so many things to it to make it mind blowing.There are colours, images, flash, and you can even make a video game if you wanted too. The possibilities are endless and mind blowing.</P>
<H3 ALIGN="center"> How can coding be important in the real world? </H3>
    <P> <EM>Technology</EM> is everywhere and is constantly changing. <MARK>Computers</MARK> are so intertwined in our lives. People view web pages all the time and are looking at code everyday. Being able to code can get you a job if you are efficient with different languages.
    <P><STRONG>These are the best consoles ever!!!!</STRONG></P>
<UL>
    <LI>N64</LI>
    <LI>SEGA GENESIS</LI>
    <LI>XBOX</LI>
    <LI>XBOX 360</LI>
</UL>
<TABLE BORDER="1">
<TR><TD>First</TD></TR>
<TR><TD>Second</TD></TR>
<TR><TD>Third</TD></TR>
</TABLE>
<IMG SRC="smile.jpg" WIDTH="120" HEIGHT="90"/>

</BODY>
</HTML>
4

5 回答 5

6

您必须src正确拼写(SourCe)。你有两个字母颠倒了。

如果您使用验证器执行了一些基本的自动化 QA,那么这将被选中。

于 2013-09-21T09:52:02.503 回答
0

检查以下内容:您的图像可能位于您的文件之外的另一个文件夹中吗?页面上是否还有其他div 或元素可能位于图像的“顶部”?你的布局可以把东西“离屏”吗?是否有代码可以设置可见性:没有?你会不会把图片的文件名拼错了?您是否绝对确定在尝试再次加载时强制刷新浏览器窗口?

请给我们完整的代码;最好作为 JS 小提琴。

于 2013-09-21T16:37:09.460 回答
0

你的img标签错了,应该是

<img src="smile.jpg" width="120" height="90"/>
于 2013-09-21T10:03:26.573 回答
0

如果您要在 Linux 服务器上查找它,则文件名区分大小写。如果您设置并测试它并发现它在 Windows 系统上测试良好,您可能不会注意到smile.JPG 和 SMILE.jpg 和 Smile.jpg 都将被视为相同的东西微笑.jpg 在Linux 主机上,如果您调用smile.jpg 并且它被存储为smile.JPG(例如),您将得到您正在观察的结果。

于 2013-09-24T04:07:54.440 回答
-1

宽度和高度属性应该有单位。你想要它们以像素为单位吗?尝试这个:

<img src="smile.jpg" width="120px" height="90px"/>
于 2013-09-21T14:24:11.400 回答