-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpastelesexistencia.html
More file actions
82 lines (79 loc) · 1.64 KB
/
pastelesexistencia.html
File metadata and controls
82 lines (79 loc) · 1.64 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
<!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>Almacén</title>
</head>
<body>
<center>
<h1>Almacén de la pasteleria</h1>
</center>
<h2>Pasteles en existencia</h2>
<table>
<table border="2">
<tr>
<th>Sabor</th>
<th>existencia</th>
</tr>
<tr>
<td>chocolate</td>
<td>200</td>
</tr>
<tr>
<td>vainilla</td>
<td>320</td>
</tr>
<tr>
<td>frutas</td>
<td>140</td>
</tr>
<tr>
<td>tre leches</td>
<td>340</td>
</tr>
</table>
<table>
<table border="2">
<h2>Adornos en existencia</h2>
<tr>
<th>Tipo</th>
<th>existencia</th>
</tr>
<tr>
<td>infantil</td>
<td>320</td>
</tr>
<tr>
<td>boda</td>
<td>1000</td>
</tr>
<tr>
<td>xv años</td>
<td>320</td>
</tr>
<tr>
<td>casual</td>
<td>233</td>
</tr>
</table>
<table>
<table border="2">
<h2>Pedidos en espera</h2>
<tr>
<th>Numero</th>
<th>Nombre cliente</th>
<th>Dirección</th>
<th>Pastel selecionado</th>
<th>Adorno selecionado</th>
<th>Especificaciones</th>
</tr>
</table>
<br>
<hr>
<center>
<a href="./elbuenpostre.html"><button>Regresar</button></a>
</center>
</body>
</html>