You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
805 B

10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
  1. <!DOCTYPE html>
  2. <html lang="fr">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <script src="//cdn.tailwindcss.com"></script>
  7. <script src="//unpkg.com/alpinejs" defer></script>
  8. <title>Calculator</title>
  9. <script>
  10. document.addEventListener('alpine:init', () => {
  11. Alpine.data('calculator', () => ({
  12. //TODO: ...
  13. }))
  14. console.log('Ready!')
  15. })
  16. </script>
  17. </head>
  18. <body class=" flex h-screen justify-center items-start " x-data="calculator">
  19. <div class="m-8 p-8 text-4xl bg-gray-200">
  20. <ul>
  21. <li class="italic"> Effacer-moi </li>
  22. <li> Merci de dessiner une grille de 4 colonnes... </li>
  23. </ul>
  24. </div>
  25. </body>
  26. </html>