-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathingredientsInStock.html
More file actions
94 lines (89 loc) · 1.75 KB
/
ingredientsInStock.html
File metadata and controls
94 lines (89 loc) · 1.75 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ingredients in Stock</title>
</head>
<body>
<div>
<table>
<tr>
<th><img src="./images/logo.svg" alt="logo"></th>
<th><h1>RaspberryPi</h1></th>
</tr>
</table>
<h2>Ingredients in Stock</h2>
</div>
<div>
<table border="1">
<tr>
<th>FLAVORS</th>
<th>QTY</th>
<th>TOPPINGS</th>
<th>QTY</th>
</tr>
<tr>
<td>Apple</td>
<td>27</td>
<td>Almonds</td>
<td>17</td>
</tr>
<tr>
<td>Blackberry</td>
<td>30</td>
<td>Chocolate Shavings</td>
<td>14</td>
</tr>
<tr>
<td>Blueberry</td>
<td>22</td>
<td>Coconut</td>
<td>29</td>
</tr>
<tr>
<td>Chocolate</td>
<td>13</td>
<td>Crushed Oreos</td>
<td>22</td>
</tr>
<tr>
<td>Pineapple</td>
<td>13</td>
<td>Granola</td>
<td>28</td>
</tr>
<tr>
<td>Raspberry</td>
<td>29</td>
<td>M&M's</td>
<td>21</td>
</tr>
<tr>
<td>Strawberry</td>
<td>14</td>
<td>Pineapple</td>
<td>22</td>
</tr>
<tr>
<td>Vanilla</td>
<td>14</td>
<td>Raspberries</td>
<td>16</td>
</tr>
<tr>
<td rowspan="2" colspan="2" />
<td>Sprinkles</td>
<td>30</td>
</tr>
<tr>
<td>Strawberries</td>
<td>20</td>
</tr>
</table>
</div>
<br>
<p>Quantity is measured in Kilos</p>
</body>
</html>