-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (32 loc) · 1.38 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Generator v.1</title>
<link rel="stylesheet" href="src/css/style.css">
</head>
<body>
<h1 class="main-title">Inputs value of lower, upper and quantity can't be bigger than: <span>2147483647</span></h1>
<div class="container">
<div class="inputs-wrapper">
<p class="inputs-title">Lower</p>
<input required class="lower-limit" id="lower" type="text">
<p class="inputs-title">Upper</p>
<input required class="upper-limit" id="upper" type="text">
<p class="inputs-title">Quantity</p>
<input required class="quantity" id="quantity" type="text">
<input class="button" type="button" id="elem" placeholder="generate" value="Generate">
<button class="clean-numbers" id="clean-numbers-in-html" onclick="clearNumbers()">Clean</button>
<div class="testType" id="typeInHtml" style="margin: 1rem 0 1rem 0;"></div>
</div>
</div>
<script
src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<script src="src/js/script.js"></script>
</body>
</html>