19 lines
297 B
HTML
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>
|