-3

将代码上传到服务器时遇到问题。我需要在右边有一张骆驼的图像,但由于某种原因,该图像不会出现。我已经尝试了示例代码,当使用它时,图像会出现,但不会出现在我的代码中。我将我的代码放在下面,所以任何帮助都会很棒。这也是我第一次尝试这种语言,所以我对这一切都非常陌生。

<!DOCTYPE  html>

<!-- Fig. 2.18 Solution -->
<! __ Includes camel image -->

<html>
       <head>
          <meta charset = "utf-8">
              <title> Homework 1- 2.18 Solution </title>
       </head>
       <body>
          <table border = "1"   width = "640" >
             <tr>
                <td><h1> Objectives </h1>
                   <ul>
                      <li>  To be able to create tables with rows and
                            columns of data. </li>
                      <li>  To be able to control the display and formatting of tables. </li>
                      <li>   To be able to create and use forms. </li>
                   </ul>
                   <em> Yea, from the table of my memory I'll wipe away all 
                        trivial fond records. </em><br  />
                        William Shakespeare.
                   </td>
                   <td><imag src="camel.png"  alt= "Camel picture"
                         height = "310"    width = "200"  />
                </td>
             </tr>
          </table>
        </body>
     </html>
4

1 回答 1

1

您需要使用<img src="camel.png" alt= "Camel picture" height = "310" width = "200" />- 从“imag”中取出“a”。

于 2013-08-15T22:45:22.090 回答