-
Notifications
You must be signed in to change notification settings - Fork 0
/
pastelero.html
55 lines (51 loc) · 1.79 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
<!DOCTYPE html>
<html>
<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>Pasteleria Singular</title>
<link rel="stylesheet" href="./estilos.css">
</head>
<body>
<div class="navbar">
<img src="./logo.png" alt="Logo Pasteleria Singular" width="150">
<div id="menu"><a href="./contacto.html"><p>CONTACTO</p></a></div>
<div id="menu"><a href="./pedido.html"><p>PEDIDO</p></a></div>
<div id="menu"><a href="./menu.html"><p>MENU</p></a></div>
<div id="menu"><a href="./index.html"><p>HOME</p></a></div>
</div>
<section id="pedido">
<h1>Pedidos</h1>
<div class="cake-orders">
<table>
<tr>
<th>Pedido</th>
<th>Descripción</th>
<th>Total</th>
</tr>
<tr>
<td>No.1</td>
<td>Sabores: Chocolate, 3 Leches <br> Adornos: Fondant</td>
<td>$ 800.00</td>
</tr>
<tr>
<td>No. 2</td>
<td>Sabores: Chocolate, 3 Leches <br> Adornos: Fondant, Chispas</td>
<td>$ 950.00</td>
</tr>
<tr>
<td>No. 3</td>
<td>Sabores: Red Velvet <br> Adornos: Betún, Chispas</td>
<td>$ 450.00</td>
</tr>
</table>
</div>
</section>
<footer>
<p>Jardines de los cerezos #750 int 28 Jardines de Miraflores<br>
<a href="mailto:[email protected]">[email protected]</a></p>
<p>Tel: 3331749212</p>
</footer>
</body>
</html>