-
Notifications
You must be signed in to change notification settings - Fork 0
/
calculator.html
153 lines (145 loc) · 6.42 KB
/
calculator.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
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<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 href="https://fonts.googleapis.com/css2?family=Bodoni+Moda&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<title>Tanya Specialty Sweets</title>
</head>
<nav>
<div class="logo"><h5>Tanya Specialty Sweets</h5></div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="pastries.html">Pastries</a></li>
<li><a href="cakes.html">Cakes</a></li>
</ul>
<div class="burger">
<div class="line1"></div>
<div class="line2"></div>
<div class="line3"></div>
</div>
</nav>
<body>
<br><br><br><br>
<div class="bio">
<form id="order">
<table id="selections">
<tr>
<td><label>Walnuts</label>
<input type="text" name="walnutqty" placeholder="1.00" size="4">
</td>
<td><input type="text" name="hornqty" placeholder="1.00" size="4">
<label>Cream Horns</label>
</td>
</tr>
<tr>
<td><label>Glazed Cookies</label>
<input type="text" name="gcookieqty" placeholder="1.00" size="4">
</td>
<td><input type="text" name="hcookieqty" placeholder="1.00" size="4">
<label>Honey Cookies</label>
</td>
</tr>
<tr>
<td><label>Acorns</label>
<input type="text" name="acornqty" placeholder="1.25" size="4">
</td>
<td><input type="text" name="chocpruneqty" placeholder="1.25" size="4">
<label>Chocolate Prunes</label>
</td>
</tr>
<tr>
<td><label>Macarons</label>
<input type="text" name="macaronqty" placeholder="1.50" size="4">
</td>
<td><input type="text" name="crunchypuffqty" placeholder="1.50" size="4">
<label>Crunchy puffs</label>
</td>
</tr>
<tr>
<td><label>Peaches</label>
<input type="text" name="peachqty" placeholder="1.50" size="4">
</td>
<td><input type="text" name="lemonqty" placeholder="1.50" size="4">
<label>Lemons</label>
</td>
</tr>
<tr>
<td><label>Chestnuts</label>
<input type="text" name="chestnutqty" placeholder="1.50" size="4">
</td>
<td><input type="text" name="towerqty" placeholder="1.50" size="4">
<label>Cake Towers</label>
</td>
</tr>
<tr>
<td><label>Fruit Pavlovas</label>
<input type="text" name="pavlovaqty" placeholder="1.50" size="4">
</td>
<td><input type="text" name="cakepopqty" placeholder="1.50" size="4">
<label>Chocolate Cake Pops</label>
</td>
</tr>
<tr>
<td><label>Mini Cupcakes</label>
<input type="text" name="minicupcakeqty" placeholder="1.50" size="4">
</td>
<td><input type="text" name="cheesecakeqty" placeholder="2.00" size="4">
<label>Cheesecakes</label>
</td>
</tr>
<tr>
<td><label>Prune Cups</label>
<input type="text" name="prunecupqty" placeholder="2.00" size="4">
</td>
<td><input type="text" name="cupcakeqty" placeholder="2.00" size="4">
<label>Cupcakes</label>
</td>
</tr>
<tr>
<td><label>Tiramisu Cups</label>
<input type="text" name="tiramisucupqty" placeholder="2.00" size="4">
</td>
<td><input type="text" name="tartqty" placeholder="4.99" size="4">
<label>Chocolate Tarts</label>
</td>
</tr>
<tr>
<td><label>Small Classic Cake</label>
<input type="text" name="sccakeqty" placeholder="50.00" size="4">
</td>
<td><input type="text" name="lccakeqty" placeholder="85.00" size="4">
<label>Large Classic Cake</label>
</td>
</tr>
<tr>
<td><label>Small Specialty Cake</label>
<input type="text" name="sscakeqty" placeholder="55.00" size="4">
</td>
<td><input type="text" name="lscakeqty" placeholder="90.00" size="4">
<label>Large Specialty Cake</label>
</td>
</tr>
<tr>
<td><label>Small Deluxe Cake</label>
<input type="text" name="sdcakeqty" placeholder="60.00" size="4">
</td>
</tr>
</table>
</form>
<br>
<div style="text-align:center" id="totalPrice"></div>
<br>
<button type="button" style="display:none;" id="reset" onclick="reset()">Reset</button>
<br><br><br><br>
</div>
<div class="footer">
<br>
<i>Custom web page by Irina ~ Launched in 2021</i>
<br><br>
</div>
</body>
<script src="app.js"></script>
<script src="order.js"></script>
</html>