-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPastelero.html
163 lines (152 loc) · 3.88 KB
/
Pastelero.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
154
155
156
157
158
159
160
161
162
163
<!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>Document</title>
</head>
<body>
<h1>Pasteles Artesanales</h1>
<br>
<br>
<h2>Inventario Sabores en Existencia </h2>
<table>
<tr>
<th>Fecha</th>
<th>Vainilla</th>
<th>Zanahoria</th>
<th>Chocolate</th>
<th>Fresa</th>
<th>Coco</th>
<th>Piña</th>
<th>Almendra</th>
</tr>
<tr>
<td>10-02-2022</td>
<td>31</td>
<td>44</td>
<td>20</td>
<td>35</td>
<td>50</td>
<td>25</td>
<td>22</td>
</tr>
<tr>
<td>11-02-2022</td>
<td>28</td>
<td>40</td>
<td>15</td>
<td>30</td>
<td>25</td>
<td>21</td>
<td>19</td>
</tr>
<tr>
<td>12-02-2022</td>
<td>20</td>
<td>35</td>
<td>12</td>
<td>29</td>
<td>21</td>
<td>19</td>
<td>15</td>
</tr>
/<Table
<br>
<br>
<h2>Inventario Adornos en Existencia </h2>
<table>
<tr>
<th>Fecha</th>
<th>Betun de Queso Crema</th>
<th>Betun de Vainilla</th>
<th>Betun de Chocolate</th>
<th>Fondant color blanco</th>
<th>Fondant color Chocolate</th>
<th>Betun de Vainilla con fresas</th>
<th>Betun de Chocolate con Chispas</th>
<th>Betun de Queso Crema y nueces</th>
</tr>
<tr>
<td>10-02-2022</td>
<td>53</td>
<td>43</td>
<td>30</td>
<td>38</td>
<td>52</td>
<td>29</td>
<td>34</td>
<td>48</td>
</tr>
<tr>
<td>11-02-2022</td>
<td>49</td>
<td>40</td>
<td>15</td>
<td>30</td>
<td>43</td>
<td>20</td>
<td>30</td>
<td>38</td>
</tr>
<tr>
<td>12-02-2022</td>
<td>35</td>
<td>38</td>
<td>10</td>
<td>25</td>
<td>40</td>
<td>16</td>
<td>12</td>
<td>25</td>
</tr>
/<Table
<br>
<br>
<h2>Informacion pedidos de Clientes </h2>
<table>
<tr>
<th>Fecha</th>
<th>Nombre</th>
<th>Teléfono</th>
<th>Correo Electrónico</th>
<th>Descripcion del Pastel</th>
<th>Sabores</th>
<th>Adornos</th>
</tr>
<tr>
<td>10-02-2022</td>
<td>Carlos Martinez Gonzalez</td>
<td>8712632345</td>
<td>[email protected]</td>
<td>Cumpleadños</td>
<td>Vainilla</td>
<td>Fondant color blanco</td>
</tr>
<tr>
<td>11-02-2022</td>
<td>Carmen Rodriguez Perez</td>
<td>8713456347</td>
<td>[email protected]</td>
<td>aniversario de bodas</td>
<td>Almendra</td>
<td>Betun de Queso Crema y nueces</td>
</tr>
<tr>
<td>12-02-2022</td>
<td>Juan Pablo Rocha Salinas</td>
<td>8713456781</td>
<td>[email protected]</td>
<td>bautizo</td>
<td>Chocolate</td>
<td>Betun de Chocolate con Chispas</td>
</tr>
/<Table
<br>
<br>
<a href="./Practica_Pastel1a.html">
<input type="button" value="Inicio">
</a>
</body>
</html>