How to include a JSP or HTML page in another JSP page

<%@ include file="relativeFragment.jsp" %>
 
eg:
<body onload="onLoad();" style="padding-bottom: 0px;">
 <form name="addRoleForm" method="post" action="../Admin/AddRole">
  <%@ include file="/pages/roleslist.jsp" %>     
 </form>
</body>