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>