Advertisement
Guest User

Untitled

a guest
Jul 15th, 2019
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1. <%@page contentType="text/html" pageEncoding="UTF-8"%>
  2. <!DOCTYPE html>
  3. <html>
  4. <head>
  5. <%
  6. //Capturamos los datos enviados desde el servlet
  7. String nombres = (request.getAttribute("nombres")).toString();
  8. String apellidos = (request.getAttribute("apellidos")).toString();
  9. %>
  10. <style>
  11. * {
  12. box-sizing: border-box;
  13. }
  14. img {
  15. max-width: 30%;
  16. }
  17. .column {
  18. float: left;
  19. width: 33.33%;
  20. padding: 5px;
  21. }
  22.  
  23. /* Clearfix (clear floats) */
  24. .row::after {
  25. content: "";
  26. clear: both;
  27. display: table;
  28. }
  29. </style>
  30. </head>
  31. <body>
  32.  
  33. <h2>Bienvenido <%=nombres + " " + apellidos%></h2>
  34. <p>How to create side-by-side images with the CSS float property:</p>
  35. <center>
  36. <div class="row">
  37. <div class="column">
  38. <img src="img/saldo.png" alt="Snow" style="width:100%">
  39. <p><a href="saldo.jsp">Ver saldo</a></p>
  40. </div>
  41. <div class="column">
  42. <img src="img/trans.png" alt="Forest" style="width:100%">
  43. <p> <p><a href="transferencia.jsp">Hacer transferencia transferencia</a></p></p>
  44. </div>
  45. <div class="column">
  46. <img src="img/mov.png" alt="Mountains" style="width:100%">
  47. <p> <p><a href="movimiento.jsp">Consultar movimentos de cuenta</a></p></p>
  48. </div>
  49. </div>
  50. </center>
  51. </body>
  52. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement