Advertisement
Guest User

number generator

a guest
Dec 17th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>very molti numeri</title>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. </head>
  7.  
  8. <body>
  9. <p id=schnee> </p>
  10. <button onclick="molto()">Random</button>
  11. <script>
  12. function molto(){
  13. document.getElementById("schnee").innerHTML = Math.floor(Math.random() * 46)+1;
  14. };
  15. </script>
  16. </body>
  17. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement