Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!-- ja1.html -->
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>Jogo do Adivinha - 1 - Configuração</title>
- <script src="am_util.js"></script>
- <script src="storage_utils.js"></script>
- <script src="ja1.js"></script>
- </head>
- <body>
- <details>
- <summary>Instruções</summary>
- Indique valores mínimo e máximo, que ...
- </details>
- <hr>
- <form id="idFormConfiguracao">
- <label for="idTextNome">O seu nome:</label>
- <input id="idTextNome" value="Anonymous" type="text"><br>
- <fieldset>
- <legend>Fronteira do jogo</legend>
- <label for="idMin">Valor mínimo: </label>
- <input id="idMin" value="1" type="number">
- <br>
- <label for="idMax">Valor máximo: </label>
- <input id="idMax" value="999999" type="number">
- </fieldset>
- <input type="submit" value="confirmar configuração">
- </form>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment