old-src-backup/something.html
2017-07-11 21:14:14 -07:00

19 lines
297 B
HTML

<!DOCTYPE html>
<html>
<body>
<p>Click the button to display a random number.</p>
<button onclick="myFunction()">Try it</button>
<p id="demo"></p>
<script>
function myFunction() {
document.getElementById("demo").innerHTML = Math.round(Math.random(0,20) * 10);
}
</script>
</body>
</html>