forked from Technigo/webdev-week3-session
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
186 lines (165 loc) · 5.54 KB
/
Copy pathindex.html
File metadata and controls
186 lines (165 loc) · 5.54 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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
<!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>Flower Power Inc.</title>
<link rel="stylesheet" href="style.css">
<script src="index.js" defer></script>
<!-- Link to Google Fonts -->
<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=Permanent+Marker&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300&family=Source+Serif+Pro:wght@200&display=swap" rel="stylesheet">
</head>
<body>
<header class="hero-image">
<div class="hero-text">
<h1>Flower Power Inc.</h1>
<h2>Fresh flowers at your doorstep!</h2>
</div>
</header>
<div class="intro">
<text>Do you love flowers but sometime do not have time to buy them? Flower Power Inc. brings you the nicest flowers in season picked by our star florists. The bouquets are delivered in a box outside your door. Read below to find out more. <strong>ENJOY!</strong> </text>
</div>
<main>
<!--Accordion-->
<div class="accordion">
<h1>Which flower box should I choose?</h1>
<div class="accordion-item">
<div class="accordion-item-header">
French Delight
</div>
<div class="accordion-item-body">
<div class="accordion-item-body-content">With French Delight you will get a great mixture of the finest flowers available for the season. The bouquets usually consist of five different flowers in company with some green garnish for an elegant look. <p><strong>25 EUR/box</strong></p>
</div>
</div>
</div>
<div class="accordion-item">
<div class="accordion-item-header">
Rose Mary
</div>
<div class="accordion-item-body">
<div class="accordion-item-body-content">Rose Mary is the perfect box if you LOVE roses! The box includes one big and two small bouquets of our finest roses of the season, chosen with a specific color theme in mind. This is a must if you are a true romantic. <p><strong>40 EUR/box</strong></p>
</div>
</div>
</div>
<div class="accordion-item">
<div class="accordion-item-header">
Flourish Mi Casa
</div>
<div class="accordion-item-body">
<div class="accordion-item-body-content">Do you ever feel that you just cannot get enough when buying flowers? Then Flourish Mi Casa is the perfect choice for you! This is the box for any flower maniac you could think of... Each box consists of six (!) different bouquets ready for stepping into every single room of yours - or why not put several bouquets in the same room? <p><strong>70 EUR/box</strong></p>
</div>
</div>
</div>
<div class="accordion-item">
<div class="accordion-item-header">
In the Jungle
</div>
<div class="accordion-item-body">
<div class="accordion-item-body-content">Green is always nice and never boring! In the Jungle is just the most wonderful way to embrace simplicity and elegance, bringing you a bouquet where green plays the main character joined by only white flowers. <p><strong>30 EUR/box</strong></p>
</div>
</div>
</div>
</div>
</div>
<!--Form-->
<form action="http://httpbin.org/anything" method="post">
<form>
<h1>Sign up below to buy a box!!!</h1>
<section>
<!--Form/name-->
<div class="sub-section">
<h2>Name</h2>
<div class="answer">
<label>
First name:
<input class="text-input" type="text" name="first-name"/>
</label>
</div>
<div class="answer">
<label>
Last name:
<input class="text-input" type="text" name="last-name"/>
</label>
</div>
</div>
</div>
<!--Form/Address-->
<div class="sub-section">
<h2>Address</h2>
<div class="answer">
<label>
Street line & no:
<input class="text-input" type="text" name="street"/>
</label>
</div>
<div class="answer">
<label>
Zip code:
<input class="text-input" type="number" name="zipcode"/>
</label>
</div>
<div class="answer">
<label>
City:
<input class="text-input" type="text" name="city"/>
</label>
</div>
</div>
<!--Form/contact-->
<div class="sub-section">
<h2>Contact info</h2>
<div class="answer">
<label>
E-mail:
<input class="text-input" type="email" name="email"/>
</label>
</div>
<div class="answer">
<label>
Phone:
<input class="text-input" type="tel" name="phone"/>
</label>
</div>
</div>
</div>
<!--Form/order-->
<div class="sub-section"><h2>Which flower box do you want to order?</h2>
<div class="answer">
<label>French Delight
<input class="text-input" type="radio" name="flower-box" value="French Delight"/>
</label>
<label>Rose Mary
<input class="text-input" type="radio" name="flower-box" value="Rose Mary"/>
</label>
<label>Flourish Mi Casa
<input class="text-input" type="radio" name="flower-box" value="Flourish Mi Casa"/>
</label>
<label>In the Jungle
<input class="text-input" type="radio" name="flower-box" value="In the Jungle"/>
</label>
</div>
</div>
<div class="answer">
<label>
Agree to our Terms & Conditions:
<input class="text-input" type="checkbox" name="terms&conditions"/>
</label>
</div>
</div>
</div>
<button>SUBMIT</button>
</form>
</section>
</main>
<!--Footer-->
<footer>
<p>Flower Power Inc.</p>
<p> contact@flowerpower.com</p>
<p>Terms & Conditions</p>
</footer>
</body>
</html>