-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpastelere.html
90 lines (86 loc) · 2.26 KB
/
pastelere.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
<!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>Mis Pedidos CuquiPasteles</title>
</head>
<body>
<h1>Mis Pedidos CuquiPasteles</h1>
<h2>Resumen de pedidos</h2>
<table>
<tr>
<th>Nombre</th>
<th>Correo</th>
<th>Teléfono</th>
<th>Sabores</th>
<th>Decoraciones</th>
<th>Descripción</th>
</tr>
<tr>
<td>Antonio López</td>
<td>[email protected]</td>
<td>5557485372</td>
<td>Oreo</td>
<td>Flores, Texto</td>
<td>Que diga "Feliz cumpleaños, Sonia" con rosas alrededor.</td>
</tr>
<tr>
<td>Alicia Villaseñor</td>
<td>[email protected]</td>
<td>5554253674</td>
<td>Emperador de limón</td>
<td>Acuarela, Personaje</td>
<td>Uno de LadyBug y que tenag mucho azul porque a mi niña le gusta mucho.</td>
</tr>
<tr>
<td>Rosario Hernández</td>
<td>[email protected]</td>
<td>5559862431</td>
<td>Marias, Arcoiris</td>
<td>Flores, Personaje</td>
<td>Que tenga una monita como de graduada y flores como de graduación.</td>
</tr>
</table>
<h2>Estado de ingredientes</h2>
<table>
<tr>
<th>Ingrediente</th>
<th>Quedan paquetes</th>
</tr>
<tr>
<td>Oreo</td>
<td>3</td>
</tr>
<tr>
<td>Marías</td>
<td>11</td>
</tr>
<tr>
<td>Emperador</td>
<td>7</td>
</tr>
<tr>
<td>Arcoiris</td>
<td>5</td>
</tr>
<tr>
<td>Betún para flores</td>
<td>2</td>
</tr>
<tr>
<td>Acuarela</td>
<td>8</td>
</tr>
<tr>
<td>Fondant para personaje</td>
<td>20</td>
</tr>
<tr>
<td>Betún Texto</td>
<td>18</td>
</tr>
</table>
</body>
</html>