Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.62 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  5.         <title>Api de Persistencia - Canciones</title>
  6.     </head>
  7.     <body>
  8.         <h1>Listado de Canciones</h1>
  9.         <table border="1">
  10.             <thead>
  11.                 <tr><th>Artista</th><th>Tema</th>
  12.                 </tr>
  13.             </thead>
  14.             <tbody>
  15.                 <c:forEach items="${requestScope.lista}" var="c">
  16.                     <tr><td>${c.artista}</td><td>${c.titulo}</td></tr>
  17.                 </c:forEach>
  18.             </tbody>
  19.         </table>
  20.  
  21.  
  22.     </body>
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement