-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (31 loc) · 1014 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
28
29
30
31
32
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/style.css">
<script src="./js/numericinput.js" defer></script>
<title>Document</title>
</head>
<body>
<div class="container">
<h1>Simple Numeric Inputs</h1>
<section>
<span>[0, 100]</span>
<input type="text" name="numeric-input" minval="0" maxval="100" initialval="0" decimal="3">
</section>
<section>
<span>[-Inf, Inf]</span>
<input type="text" name="numeric-input" initialval="10" decimal="2">
</section>
<section>
<span>[-10.2, 10.2]</span>
<input type="text" name="numeric-input" minval="-10.2" maxval="10.2" decimal="2">
</section>
<section>
<span>[-Inf, Inf]</span>
<input type="text" name="numeric-input">
</section>
</div>
</body>
</html>