examen MVC (model view controller)
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

base.html.twig 408B

12345678910111213141516171819
  1. <html>
  2. <link
  3. rel="stylesheet"
  4. href="https://unpkg.com/purecss@2.0.6/build/pure-min.css"
  5. integrity="sha384-Uu6IeWbM+gzNVXJcM9XV3SohHtmWE+3VGi496jvgX1jyvDTXfdK+rfZc8C1Aehk5"
  6. crossorigin="anonymous"
  7. />
  8. <body>
  9. <div id="main">{% block main%} {% endblock %}</div>
  10. </body>
  11. <style>
  12. table,
  13. th,
  14. td {
  15. border: 1px solid black;
  16. padding: 5px;
  17. }
  18. </style>
  19. </html>