-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOrder.html
More file actions
110 lines (78 loc) · 2.55 KB
/
Order.html
File metadata and controls
110 lines (78 loc) · 2.55 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
<!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">Pedido</h1>
</div>
<div id="right">
<h1 class="user-style">User</h1>
</div>
</div>
<div id="cake-div">
<h2>Sabores</h2>
<p>Chocolate</p>
<p>Fresa</p>
</div>
<hr>
<div id="decoration-div">
<h2>Adornos</h2>
<p>Figura de fondant</p>
<p>Texto</p>
</div>
<hr>
<div id="client-div">
<h2>Información de cliente</h2>
<h4>Nombre</h4>
<input type="text" value="Andrés Solís"/>
<h4>Correo electrónico</h4>
<input type="text" value="and_sol25@gmail.com"/>
<h4>Teléfono</h4>
<input type="text" value="9996325487"/>
<h4>Dirección</h4>
<input type="text" value="Calle 49, no. 54, entre 24 y 26"/>
</div>
<h3>Total: $350</h3>
<input type="button" value="Realizar pedido"/>
<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>