am_dot_com

SW 2023-05-10

May 10th, 2023 (edited)
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. <!-- ja1.html -->
  2. <!DOCTYPE html>
  3. <html lang="en">
  4. <head>
  5. <meta charset="UTF-8">
  6. <title>Jogo do Adivinha - 1 - Configuração</title>
  7. <script src="am_util.js"></script>
  8. <script src="storage_utils.js"></script>
  9. <script src="ja1.js"></script>
  10. </head>
  11. <body>
  12. <details>
  13. <summary>Instruções</summary>
  14. Indique valores mínimo e máximo, que ...
  15. </details>
  16. <hr>
  17. <form id="idFormConfiguracao">
  18. <label for="idTextNome">O seu nome:</label>
  19. <input id="idTextNome" value="Anonymous" type="text"><br>
  20. <fieldset>
  21. <legend>Fronteira do jogo</legend>
  22. <label for="idMin">Valor mínimo: </label>
  23. <input id="idMin" value="1" type="number">
  24. <br>
  25.  
  26. <label for="idMax">Valor máximo: </label>
  27. <input id="idMax" value="999999" type="number">
  28. </fieldset>
  29.  
  30. <input type="submit" value="confirmar configuração">
  31. </form>
  32. </body>
  33. </html>
Advertisement
Add Comment
Please, Sign In to add comment