-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpedido.html
95 lines (82 loc) · 2.07 KB
/
pedido.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
<!DOCTYPE html>
<html lang="es">
<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>The Cake Is A Lie</title>
<link rel="stylesheet" href="estilo.css">
<link rel="icon" type="image/jpg" href="img/logo.jpg">
</head>
<body>
<header>
<section id="logo">
<img src="img/logo.jpg" alt="Logo" height="100">
</section>
<h1>The Cake Is a Lie</h1>
</header>
<nav>
<li><a href="index.html">Inicio</a></li>
<li><a href="pedido.html">Pedido</a></li>
<li><a href="seguimiento.html">Seguimiento</a></li>
<li><a href="contacto.html">Contacto</a></li>
</nav>
<!--Aquí termina el encabezado para todas las páginas-->
<h1>Antes de realizar su pedido le sugerimos revisar nuestras existencias</h1>
<br></br>
<br></br>
<h1>
Pasteles
(precio para 10 personas aprox.)
</h1>
<br></br>
<h1>
Pastel de chocolate
<h2>Disponible</h2>
<img id= "imagen" src="img/chocolate.jfif" alt="chocolate">
</h1>
<h1>
Pastel de Fresa
<h2>Disponible</h2>
<img id= "imagen" src="img/fresa.jpg" alt="Fresa">
</h1>
<h1>
Pastel de Queso Con Zarzamora
<h2>Disponible</h2>
<img id= "imagen" src="img/zarzamora.jfif" alt="Queso">
</h1>
<br></br>
<br></br>
<h1>
Adornos
(Imagenes sobre el pastel)
</h1>
<br></br>
<h1>
Spiderman
<h2>10 (restantes)</h2>
<img id= "imagen" src="img/spiderman.jpg" alt="Spiderman">
</h1>
<h1>
Chems
<h2>Disponible</h2>
<img id= "imagen" src="img/chems.jpg" alt="Chems">
</h1>
<h1>
Gato Chillón
<h2>2 (restantes)</h2>
<img id= "imagen" src="img/gato.jpg" alt="Gato">
</h1>
<br><br>
<br><br>
<br><br>
<footer>
<p>The Cake Is A Lie está para servirte</p>
</footer>
<h1>Ahora si puede hacer su pedido al formulario
<br>
<a href="form/form.html">SOY EL FORMULARIO</a>
</br>
</h1>
</body>
</html>