-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (36 loc) · 1.16 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
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Randomizer</title>
<link rel="stylesheet" href="./src/random.css">
</head>
<body>
<div class="light" class="blinkBorderOut">
<form class="blinkBorderIn">
<div class="heder">
<h1 class="blink">Randomizer</h1>
</div>
<div class="min">
<p>min</p>
<input class="inputMin" type="number" value="0">
</div>
<div class="max">
<p>max</p>
<input class="inputMax" type="number" value="0">
</div>
<div class="buttons">
<button class="generate" type="button">Generate</button>
<button class="resetForm" type="reset">Reset</button>
</div>
<div class="outputRes">
<p>Redy to start</p>
</div>
</form>
</div>
<script src="./src/js/dom.js"></script>
<script src="./src/js/random.js"></script>
</body>
</html>