-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (27 loc) · 906 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Random Number Generator</title>
<link rel="stylesheet" href="styles.css">
<script src="main.js" defer></script>
</head>
<body>
<main>
<div class="container">
<div class="btn-container">
<label for="min-num">minimum number:</label><br>
<input type="number" id="min-num" name="min-num"><br>
<label for="max-num">maximum number:</label><br>
<input type="number" id="max-num" name="max-num">
</div>
<span class="wrong-word"></span>
<div class="random-num">
<span id="value">0</span>
</div>
<button class="generate-btn">random number?</button>
</div>
</main>
</body>
</html>