This commit is contained in:
szabomarton
2024-10-08 13:04:28 +02:00
parent 0683848348
commit acab643dff
7 changed files with 254 additions and 0 deletions

19
24_10_08/randomszam.html Normal file
View File

@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Random szám</title>
<script src="randomszam.js" defer></script>
</head>
<body>
<h1>Szám generáló</h1>
<form >
Hány számot szeretne generálni?
<input type="number" id="szam">
</form>
<button id="gomb">GENERÁL</button>
<br>
<div id="generaltszamok"></div>
</body>
</html>