What is the equivalent in struts2 for html:img tag?
<html:img page="/img/test.gif" border="0" alt="Test"/>
There isn't equivalent in Struts 2 you should use ordinary HTML <img>
tag but with the help of <s:url>
tag.
<s:url var="url" value="/img/test.gif"/>
<img src="${url}" border="0" alt="Test">