I want to display the designated image.

Asked 5 months ago, Updated 5 months ago, 11 views

I would like to display the image in line 15.
To date, we have checked typographical errors and tags, and other sites.
The file contains the challenge file - challenge name - image-image/logo_green.png
The files are listed in the order shown in .
Also, as a question, can't I display the images that I use in HTML and javascript without separating them?

<!DOCTYPE html>
<html>
<head>
  <metacharset="UTF-8">
  <title> LiNew</title>
  <link rel="stylesheet" type="text/css" href="base.css">
  <link rel="stylesheet" type="text/css"href="">
  <script src=""></script>
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
 <header>
   <div class="header-box">
     <divid="inner-header">
        <img src="image/logo_green.png">
       <ul class="header-list">
        <lic class="header-list">News</li>
        <lic class="header-list">About</li>
        <lic class="header-list">Service</li>
        <lic class="header-list">Recruit</li>
        <lic class="header-list">Contact</li>
       </ul>
     </div>
     <div class="fadein-header">
      <p><img src="image/IMG_0224-1.jpeg">/p>
     </div>
 </div>
</body>
</html>

html

2022-09-30 13:48

1 Answers

  • Compared to other img tags, the problem is that there are extra blank characters between src and =.

  • In HTML descriptions, the image/ folder is directly below the HTML file, and there should be an image under it, but it appears to be inconsistent with the verbal explanation.

Compared to other img tags, the problem is that there are extra blank characters between src and =.

In the HTML description, there should be a image/ folder directly below the HTML file, and there should be an image underneath it, but it seems to be inconsistent with the verbal explanation.


2022-09-30 13:48

If you have any answers or tips


© 2023 OneMinuteCode. All rights reserved.