Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@vitorpiovezam
Created March 14, 2019 23:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vitorpiovezam/cd2f7053e0c7ac91d48baec5892ceb3a to your computer and use it in GitHub Desktop.
Save vitorpiovezam/cd2f7053e0c7ac91d48baec5892ceb3a to your computer and use it in GitHub Desktop.
<table border="1">
<tr>
<th>Nome</th>
<th>caracteristicas</th>
<th>detalhes</th>
</tr>
<c:forEach items="${produtos}" var="produto">
<tr>
<td>${produto.nome}</td>
<td>${produto.caracteristicas}</td>
<td>${produto.detalhes}</td>
</tr>
</c:forEach>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment