Frontend/24_10_08/randomszam.html

19 lines
475 B
HTML
Raw Permalink Normal View History

2024-10-08 11:04:28 +00:00
<!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>