forked from CodeYourFuture/HTML-CSS-Module-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstore.html
More file actions
214 lines (207 loc) · 6.54 KB
/
store.html
File metadata and controls
214 lines (207 loc) · 6.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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title>Karma Store</title>
<link
href="https://fonts.googleapis.com/css?family=Roboto:400,500,300"
rel="stylesheet"
type="text/css"
/>
<link rel="stylesheet" href="css/normalize.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
</head>
<body>
<header>
<div class="logo">
<img src="img/karma-logo.svg" alt="karma karma-logo" width="50px" />
</div>
<div class="navlinks">
<nav id="nav-bar">
<ul class="nav-bar">
<li>
<a class="nav-link" href="#MeetKarma"
><strong>Meet Karma</strong></a
>
</li>
<li><a class="nav-link" href="#HowItWorks">How it works</a></li>
<li>
<a class="nav-link" href="store.html" target="_blank">Store</a>
</li>
<li><a class="nav-link" href="#Blog">Blog</a></li>
<li><a class="nav-link" href="#SHelp">Help</a></li>
<li><a class="nav-link" href="#Login">Login</a></li>
</ul>
</nav>
</div>
</header>
<main>
<section class="mainstore">
<div class="orderform">
<form class="loginform">
<div class="titlestore">
<p>Order your Karma wifi device today!</p>
</div>
<div class="wrapername">
<div class="name">
<label for="fname">First Name*</label><br />
<br>
<input
type="text"
id="fname"
name="fname"
required
minlength="4"
maxlength="8"
size="10"
/>
</div>
<div class="lname">
<label for="lname">Last Name*</label><br />
<br>
<input
type="text"
id="lname"
name="lname"
required
minlength="4"
maxlength="8"
size="10"
/>
</div>
</div>
<div class="address1">
<label for="address">Address*</label><br />
<br>
<input
type="text"
id="address"
name="address"
required
minlength="4"
maxlength="20"
size="26"
/><br />
</div>
<div class="address2">
<label for="address2">Address 2</label><br />
<br>
<input
type="text"
id="address2"
name="address2"
required
minlength="4"
maxlength="20"
size="26"
/><br />
</div>
<div class="city-postcode">
<div class="dropdownmenu">
<label for="selectCity">City*</label><br />
<br>
<select id="selectCity" Select yout city>
<option value="select-your-city">Select your city</option>
<option value="london">London</option>
<option value="bristol">Bristol</option>
<option value="edinburgh">Edinburgh</option>
<option value="liverpool">Liverpool</option>
<option value="oxford">Oxford</option>
<option value="birmingham">Birmingham</option>
<option value="nottingham">Nottingham</option>
<br />
</select>
</div>
<div class="postcode">
<label for="postcode">Post code*</label><br />
<br>
<input
type="text"
id="postcode"
name="postcode"
required
minlength="4"
maxlength="20"
size="26"
/><br />
</div></div>
<div class="select-colour">
<p>Select a colour</p></div>
<div class="radiobutton">
<input
type="radio"
id="karma-orange"
name="karma-orange"
value="karma-orange" required
/>
<label for="karma-orange">Karma orange</label>
<input
type="radio"
id="space-grey"
name="space-grey"
value="space-grey"
/>
<label for="space-grey">Space grey</label>
</div>
<!---------------------------Checkbox-->
<div class="boxes">
<input type="checkbox" id="box-2" checked required>
<label for="box-2">By placing your order you agree Karma's
<a href="#termsconditions" target="_blank">Terms and conditions. *</a>
<span class="checkmark"></span> </label>
</div>
<!---------------------------Button Place my order-->
<div class="button">
<button>Place my order</button></div>
</form>
<div>
<img
class="imgright"
src="../HTML-CSS-Module-Project/level-2/store-image_by-andrew-neel-unsplash.jpg"
alt="homepage-desktop"
/></div>
</div>
</main>
<footer>
<hr />
<p>Join us on</p>
<nav id="nav-social">
<ul class="socialmedia">
<li class="sm">
<a class="social-media" href="#twitter"
><img
src="../HTML-CSS-Module-Project/img/twitter-icon.svg"
width="25"
height="25"
alt="twitterIcon"
/></a>
</li>
<li class="sm">
<a class="social-media" href="#facebook"
><img
src="../HTML-CSS-Module-Project/img/facebook-icon.svg"
width="25"
height="25"
alt="facebookIcon"
/></a>
</li>
<li class="sm">
<a class="social-media" href="#instagram"
><img
src="../HTML-CSS-Module-Project/img/instagram-icon.svg"
width="25"
height="25"
alt="instagramIcon"
/></a>
</li>
</ul>
</nav>
<p id="companyName">@Karma mobility, Inc.</p>
</footer>
</body>
</html>