-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (58 loc) · 1.66 KB
/
Copy pathindex.html
File metadata and controls
69 lines (58 loc) · 1.66 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!doctype html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="css/styles.css" type="text/css">
<title> How Much With Tax</title>
</head>
<html>
<!-- background -->
<div id="background-wrap">
<div class="x1">
<div class="cloud"></div>
</div>
<div class="x2">
<div class="cloud"></div>
</div>
<div class="x3">
<div class="cloud"></div>
</div>
<div class="x4">
<div class="cloud"></div>
</div>
<div class="x5">
<div class="cloud"></div>
</div>
</div>
<body onload="getLocation()">
<div class="title">
<h1>How Much With Tax?</h1>
</div>
<div class="row">
<form id="form">
<input type="number" name="input" id="subTotal" placeholder="Enter Amount...">
<div id="zip">
<input id ="zip1" type="text" name="zip" placeholder="Enter zip...">
</div>
<input id="coord" type="text">
</form>
<div>
<button class="button" onclick="getTotal();">Submit</button>
</div>
</div>
<div class="location">
<h2>
<p id="locationdis"></p>
<p id="demo"></p>
</h2>
</div>
<script src="scripts/getZip.js" type="text/javascript"></script>
<script src="scripts/getlocation.js" type="text/javascript"></script>
<script src="scripts/getTotal.js" type="text/javascript"></script>
</body>
</html>
<script>
var host = "spaghetticodestudios.github.io";
if ((host == window.location.host) && (window.location.protocol != "https:"))
window.location.protocol = "https";
</script>