-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPractica html.html
107 lines (93 loc) · 2.48 KB
/
Practica html.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
96
97
98
99
100
101
102
103
104
105
106
107
<!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>Pasteleria Rosa</title>
</head>
<body>
<!-- Logo -->
<img src="logo.png" alt="Logo pasteleria" width="200px">
<h1>Bienvenido a Pasteleria Rosa</h1>
<h2>Construye tu pastel</h2>
<p>Ve nuestros sabores y adornos</p>
<hr>
<h2>Nuestros Sabores</h2>
<!-- Tabla Sabores -->
<table>
<tr>
<th>Sabores</th>
<th>Precio(Kg)</th>
</tr>
<tr>
<td>Chocolate</td>
<td> $150</td>
</tr>
<tr>
<td>Vainilla</td>
<td> $170</td>
</tr>
<tr>
<td>Zanahoria</td>
<td> $180</td>
</tr>
<tr>
<td>Marmoleado</td>
<td> $200</td>
</tr>
<tr>
<td>Cafe</td>
<td> $130</td>
</tr>
<tr>
<td>Red Velvet</td>
<td> $220</td>
</tr>
</tr>
</table>
<hr>
<h2>Nuestros Adornos</h2>
<!-- Tabla Adornos -->
<table>
<tr>
<th>Adornos</th>
<th>Precio</th>
</tr>
<tr>
<td>Chispas de Chocolate</td>
<td> $15</td>
</tr>
<tr>
<td>Coco rallado</td>
<td> $20</td>
</tr>
<tr>
<td>Baño de chocolate</td>
<td> $50</td>
</tr>
<tr>
<td>Lunetas</td>
<td> $25</td>
</tr>
<tr>
<td>Figura decorativa</td>
<td> $130</td>
</tr>
</table>
<h2>¡Crear mi pastel!</h2>
<button onclick="location.href='Crear.html'">CREAR</button>
<!-- Formulario de contacto -->
<h2>¡Deja tus datos para contactarte!</h2>
<form action="/accion.js" id="form1" method="post">
<label for="nombre">Nombre:</label>
<input type="text" id="nombre" name="nombre"><br><br>
<label for="apellido">Apellido:</label>
<input type="text" id="apellido" name="apellido" form="form1"><br><br>
<input type="submit" value="Enviar">
</form>
<p>Contacto</p>
<p>Av. Ruben Velazquez #56, Guadalajara,Jalisco, México</p>
<p>Telefono de contacto: 3312346600</p>
</body>
</html>