-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (31 loc) · 1.24 KB
/
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
28
29
30
31
<!DOCTYPE html>
<html lang="en">
<head>
<title>Random Numbers Generator</title>
<link rel="stylesheet" href="style.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
</head>
<body>
<br>
<div class="display-container">
<h1 class="label">Random Numbers Generator</h1>
<br>
<div class="display">
<input type="text" size="50" placeholder="Згенеровані числа" id="display" readonly disabled></input>
</div>
</div>
<div class="value_range">
<label for="input"><b>Value range</b></label>
<input type="text" id="fr_text" placeholder="From"><br>
<input type="text" id="to_text" placeholder="To">
</div>
<div class="amount_value">
<input type="text" id="amount_value" placeholder="Кількість чисел">
</div>
<div class="help_and_submit">
<button type="button"onclick="clearValues()">Clear</button>
<button type="button" id="generate" onclick="fill_displayRand()">Generate</button>
</div>
<script src="index.js"></script>
</body>
</html>