-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (29 loc) · 876 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
35
36
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
<script src='xlsx.full.min.js'></script>
</head>
<body>
<form id="postForm" action='' method="post">
<p>Select weight of your package:</p>
<select id='selectWeightElem' >
<option selected>---</option>
</select>
<p>From:</p>
<select id='selectFromElem' >
<option selected>---</option>
</select>
<p>To:</p>
<select id='selectWhereElem' >
<option selected>---</option>
</select>
<button type="button" name="button" id='switchButton'>Switch directions</button>
<hr/>
<button type="button" name="button" id='submitButton'>Calculate your price</button>
</form>
<p id='deliveryPrice'></p>
<script src="script.js" charset="utf-8"></script>
</body>
</html>