-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathorders.html
More file actions
155 lines (133 loc) · 5.05 KB
/
orders.html
File metadata and controls
155 lines (133 loc) · 5.05 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<!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>Orders</title>
<link rel="stylesheet" href="estilos/estilos.css">
</head>
<body>
<h2 style="color:#b49760"> Select cakes for your order</h2>
<br></br>
<form action="/action_page.php" style="color:#b49760">
<label for="fname">First name:</label>
<br>
<input type="text" id="fname" name="fname" value="John">
<br>
<br>
<label for="lname">Last name:</label>
<br>
<br>
<input type="text" id="lname" name="lname" value="Doe">
<br>
<br>
<label for="phone">Phone:</label>
<br>
<br>
<input type="text" id="phone" name="phone" value="01 2345 6789">
<br>
<br>
<label for="email">Email:</label>
<br>
<br>
<input type="text" id="email" name="email" value="myself@frontend.com">
<br>
<br>
<br></br>
<label for="cakes">Cakes:</label>
<select name="cakes" id="cakes">
<option value="BM">Blueberry Moka</option>
<option value="CP">Coconut Paradise</option>
<option value="MP">Maple Pecans</option>>
</select>
<br>
<br>
<label for="qty">Quantity:</label>
<select name="qty" id="qty">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>>
<option value="4">4</option>
<option value="5">5</option>
</select>
<br></br>
<label for="cakes">Mixed Cakes:</label>
<select name="cakes" id="cakes">
<option value="cakes">Blueberry Moka / Coconut Paradise</option>
<option value="cakes">Coconut Paradise / Maple Pecan</option>
<option value="cakes">Maple Pecans / Blueberry Moka</option>>
</select>
<br>
<br>
<label for="qty">Quantity:</label>
<select name="qty" id="qty">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>>
<option value="4">4</option>
<option value="5">5</option>
</select>
<br>
<br>
<label for="dec">Decoration:</label>
<select name="dec" id="dec">
<option value="1">None</option>
<option value="2">Happy Birthday!</option>
<option value="3">Baby Shower</option>>
<option value="4">Happy Anniversary!</option>
<option value="0">Get Well Soon!</option>
</select>
<br>
<br>
<br>
<br>
<br>
<input type="submit" value="Submit">
</form>
<section id="separador">
</section>
<section id="social">
<article id="social1">
<a href="#"><img src="img/instagram.png" alt="instagram"></a>
<a href="#"><img src="img/facebook.png" alt="facebook"></a>
<a href="#"><img src="img/youtube.png" alt="youtube"></a>
<a href="#"><img src="img/twitter.png" alt="twitter"></a>
</article>
<article id="social2">
<div id="lte_icons-2" class="widget widget_lte_icons">
<h3 class="lte-header-widget " style="color:bisque"><span class="widget-icon"></span >Contact us
</h3>
<ul class="lte-social-icons-list">
<li>
<a href="#"><span class="lte-ic icon icon-phone-call" ></span><span class="lte-header" style="color:bisque">Phone:</span><span class="lte-txt" style="color:#b49760">+52 01-2345-6789<br> </span>
</a>
</li>
<li>
<a href="#"><span class="lte-ic icon icon-location"></span><span class="lte-header" style="color:bisque">Our location:</span><span class="lte-txt" style="color:#b49760">975 FrontEnd Ave, NA 105048, Unknown</span>
</a>
</li>
<li>
<a href="#"><span class="lte-ic icon icon-mail"></span><span class="lte-header" style="color:bisque">Email:</span><span class="lte-txt" style="color:#b49760">3cakes@3cakes.com</span>
</a>
</li>
<li>
<a href="#">
<span class="lte-ic icon icon-mail"></span>
<span class="lte-header" style="color:bisque">Hours:</span>
<span class="lte-txt" style="color:#b49760">Monday - Friday: 10:00 - 20:00</span>
<br>
<span class="lte-txt" style="color:#b49760">Saturday -Sunday: 10:00 - 14:00</span>
</a>
</li>
</ul>
</div>
</article>
</section>
<footer>
<p style="color:#b49760"> Copyright © 2021-<script>document.write(new Date().getFullYear())</script> Rogelio Valdés All Rights Reserved</p>
<article id="footer1"></article>
</footer>
</section>
</body>
</html>