-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCustomization.html
More file actions
114 lines (76 loc) · 2.75 KB
/
Customization.html
File metadata and controls
114 lines (76 loc) · 2.75 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
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
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@200;700&display=swap" rel="stylesheet">
<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>Pasteles</title>
<style>
@font-face {
font-family: 'Nunito', serif;
src: url();
}
.user-style
{
font-family: 'Nunito', serif;
margin-right: 15px;
font-size: 30px;
text-align: right;
}
.custom-style
{
font-family: 'Nunito', serif;
margin-left: 15px;
font-size: 40px;
}
#container {height: 100%; width:100%; font-size: 0;}
#left, #right {display: inline-block; *display: inline; zoom: 1; vertical-align: top; font-size: 12px;}
#left {width: 40%;}
#right {width: 30%;}
</style>
</head>
<body>
<div id="header" style="background-color: #ffcdb0;">
<img src="Images/Logo.png" alt="Logo de Pastelería Dorantes" width="300px">
<div id="left">
<h1 class="custom-style">Personalización</h1>
</div>
<div id="right">
<h1 class="user-style">User</h1>
</div>
</div>
<div id="flavors-div">
<label for="flavors">Sabores</label>
<br>
<select name="flavors" id="flavors">
<option value="chocolate">Chocolate</option>
<option value="vainilla">Vainilla</option>
<option value="fresa">Fresa</option>
</select>
<input type="button" value="Añadir sabor"/>
<p>Subtotal: $50</p>
</div>
<div id="decoration-div">
<label for="decorations">Adornos</label>
<br>
<select name="decorations" id="decorations">
<option value="img-impresa">Imagen impresa</option>
<option value="texto">Texto</option>
<option value="fig-fondant">Figura de fondant</option>
</select>
<input type="button" value="Añadir sabor"/>
<p>Subtotal: $50</p>
</div>
<input type="button" value="Continuar"/>
<hr>
<div id="info-div">
<h4>Pastelería Dorantes</h4>
<p>Teléfono: 9936484214</p>
<p>Dirección: Enrique Segoviano</p>
<p>Horarios de atención: lunes a sábado de 9 a. m. a 9 p. m.</p>
</div>
</body>
</html>