-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (36 loc) · 1.29 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 name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Print Sequence Calculator"/>
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Print Sequence Calculator</title>
<link rel="stylesheet" href="css/style.css">
<!-- <link rel="stylesheet" href="css/responsive.css"> -->
</head>
<body>
<header>
<h1>Print Sequence Calculator</h1>
</header>
<div id="container">
<form id="form">
<input type="number" id="page" min="1" step="1" placeholder="Number of pages">
<input type="submit" id="submit" value="Submit" disabled="disabled">
<input type="button" id="reset" value="Reset" disabled>
<input type="button" id="help" value=">> Help <<">
<div>
<input type="checkbox" id="select" value="select" disabled>
<label for="select">Select an interval</label>
</div>
<div id="parameters">
<input type="number" id="minPage" min="1" step="1" disabled placeholder="First page">
<input type="number" id="maxPage" min="1" step="1" disabled placeholder="Last page">
</div>
</form>
<div id="helpTxt"></div>
<div id="result"></div>
</div>
<script src="js/script.js"></script>
</body>
</html>