-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
22 lines (21 loc) · 1013 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="icon" type="image/png" href="images/favicon.png">
<link rel="stylesheet" href="style.css">
<title>Order your ORD!</title>
</head>
<body>
<div class="order">
<h1><u>Order</u></h1>
<p>Batch : <input id="batch" type="number" min="1" max="500" style="width: 60%"/></p>
<p style="padding-top: 3%">Year : <input id="year" type="number" min="3" max="4" style="width: 67.5%"/></p>
<div class="message" style="height: 12vw; padding: 50px 0px"><p class="ord" id="ord-date"></p></div>
<div class="ord"><input id="calculate" type="button" onclick="calculateOrdDate()" value="Submit"></button></div>
</div>
<script src="index.js"></script>
</body>
</html>