Add a simple random number generator that allows user input for the range and prints the result to the browser console.

This commit is contained in:
2025-08-14 11:57:23 -04:00
parent 7f42ae04b2
commit 48ade4eef6
2 changed files with 35 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Random Number Range</title>
</head>
<body>
<main></main>
<script src="app.js"></script>
</body>
</html>