-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPasteleria_VAMOS.html
More file actions
32 lines (32 loc) · 1.38 KB
/
Pasteleria_VAMOS.html
File metadata and controls
32 lines (32 loc) · 1.38 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
<!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 VAMOS!</title>
</head>
<body>
<h1>Bienvenidos A Pasteleria VAMOS TODOS!!!</h1>
<br></br>
<h2>Esta es la lista de los sabores que puede elejir</h2>
<br></br>
<input type="checkbox" id="topping1" name="topping1" value="Chocolate">
<label for="topping1">Pastel de Chocolate</label><label for="topping1"> ---> $250.00</label><br>
<input type="checkbox" id="topping2" name="topping2" value="Leche">
<label for="topping2">Pastel de 3 leches</label><label for="topping1"> ---> $300.00</label><br>
<input type="checkbox" id="topping3" name="topping3" value="Fresa">
<label for="topping3">Pastel de Fresa</label><label for="topping1"> ---> $280.00</label><br><br>
<h2>Puede elejir cualquiera de estos complementos</h2>
<label for="complemento">Elige tu complemento favorito</label><br>
<input list="complemento">
<datalist id="complemento">
<option value="Coco ---> $50.00">
<option value="Uvas ---> $20.00">
<option value="Flan ---> $500.00">
<option value="Chocolate ---> $60.00">
<option value="Envinado ---> $90.00">
</datalist>
<br><br>
</body>
</html>