开发者

Displaying image in JSP page

开发者 https://www.devze.com 2023-03-29 08:55 出处:网络
I am trying to display an 开发者_如何学Pythonimage on my JSP page using image tags. May I know what is the tag format i should use? I have stored my image under \"image\" folder in my project.check ou

I am trying to display an 开发者_如何学Pythonimage on my JSP page using image tags. May I know what is the tag format i should use? I have stored my image under "image" folder in my project.


check out

<html>
<body>

<img src="angry.gif" alt="Angry face" width="32" height="32" />

</body>
</html>

from http://www.w3schools.com/tags/tryit.asp?filename=tryhtml_image_test

you probably need src="/yourcontextroot/resources/images/yourpic.gif"

0

精彩评论

暂无评论...
验证码 换一张
取 消