79821942

Date: 2025-11-17 06:01:27
Score: 1
Natty:
Report link

Yes — MyApp is the name of the project, and the folder structure is:

MyApp/
   webapp/
      asset/
         images/
            headerlogo.png
      index.html

http://localhost:8080/MyApp/index.html?
→ The page loads correctly, but the image still does not appear.

<img src="images/logo.png">?
That was just an example. My actual tag is:

<img src="asset/images/headerlogo.png">

Content of index.html:

<!DOCTYPE html>
<html>
<head>
    <title>Test</title>
</head>
<body>
    <h1>Hello</h1>
    <img src="asset/images/headerlogo.png" alt="Logo">
</body>
</html>
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Vegada Deep