-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (32 loc) · 973 Bytes
/
index.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
<!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>SuperCake</title>
</head>
<body>
<img src="./img/Pasteleria.png" alt="El Cake" width="150px">
<h1>Unete a la aventura</h1>
<details>
<p>Direccion 2 poniente #5 2210157898</p>
</details>
<h2>Menu</h2>
<p>Fresa ............. $150.00</p>
<p>Chocolate ......... $200.00</p>
<p>Ferrero ........... $300.00</p>
<p>Moka .............. $200.00</p>
<p>Combinado ......... $350.00</p>
<hr>
<h2>Paquetes</h2>
<p>Avengers ... $500.00</p>
<p>Justice League ... $400.00</p>
<p>Teen Titans .. $600.00</p>
<hr>
<h2>¿Estas listo?</h2>
<a href="./pedido.html">
<input type="button" value="Hacer pedido">
</a>
</body>
</html>