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
191 lines (188 loc) · 6.25 KB
/
store.html
File metadata and controls
191 lines (188 loc) · 6.25 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
<!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>Store</title>
<link
href="https://fonts.googleapis.com/css?family=Roboto:400,500,300"
rel="stylesheet"
type="text/css"
/>
<link rel="stylesheet" href="img" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
</head>
<body>
<div class="container">
<nav>
<div class="nav-div">
<div class="nav-logo">
<ul class="navigation__list">
<li class="navigation__item" id="Karma_logo">
<img
id="Karma_logo"
src="img/karma-logo.svg"
alt="Karma logo"
/>
</li>
</ul>
</div>
<ul class="navigation__list nav-text">
<span id="MeetKarma">
<li class="navigation__item">
<a href="./index.html">Meet Karma</a>
</li>
</span>
<li class="navigation__item">
<a href="#HowItWorks">How it Works</a>
</li>
<li class="navigation__item"><a href="./store.html">Store</a></li>
<li class="navigation__item"><a href="./blog.html">Blog</a></li>
<li class="navigation__item"><a href="./help.html">Help</a></li>
<li class="navigation__item"><a href="./login.html">Login</a></li>
</ul>
</div>
</nav>
<div class="store-section">
<div class="store-form">
<h1>Order your Karma wifi device today!</h1>
<form class="orderForm">
<div class="form-row-1">
<div class="form-line">
<label for id="first">First name *</label>
<input
required
minlength="2"
maxlength="20"
class="input"
type="text"
name="first_name"
id="first"
/>
</div>
<div class="form-line">
<label for id="last">Last name *</label>
<input
required
minlength="2"
maxlength="20"
class="input"
type="text"
name="last_name"
id="last"
/>
</div>
</div>
<div class="form-line">
<label for id="adress-1">Address *</label>
<input
required
minlength="2"
maxlength="100"
class="input"
type="text"
name="address-1"
id="adress-1"
/>
</div>
<div class="form-line">
<label for id="adress-2">Address 2</label>
<input class="input" type="text" name="address-2" id="adress-2" />
</div>
<div class="form-row-last">
<div class="city-line">
<label for="city">City *</label>
<select required id="city" class="input">
<option value="" disabled selected>
<em> Select your city... </em>
</option>
<option value="London">London</option>
<option value="Manchester">Manchester</option>
<option value="Bath">Bath</option>
<option value="Liverpool">Liverpool</option>
<option value="Birmingham">Birmingham</option>
<option value="Glasgow">Glasgow</option>
<option value="Other">Other</option>
</select>
</div>
<div class="form-line postcode-line">
<label for id="postcode">Postcode *</label>
<input
required
minlength="2"
maxlength="10"
class="input"
type="text"
name="postcode"
id="postcode"
/>
</div>
</div>
<div>
<fieldset>
<legend>Select a colour</legend>
<input
required
type="radio"
value="Orange"
name="colour"
id="Karma-Orange"
/>
<label for="orange">Karma orange</label>
<input
required
type="radio"
value="Grey"
name="colour"
id="Space-grey"
/>
<label for id="Space-grey">Space Grey</label>
</fieldset>
</div>
<div class="form-line-below">
<input
required
id="check"
type="checkbox"
name="Accapted_Terms_and_Conditions"
/>
<label for="check"
>By placing your order you agree to Karma's
<a href="https://www.w3schools.com/">Terms and Conditions</a
>*</label
>
</div>
</form>
<button class="btn-form">Place my order</button>
</div>
<div class="store-img">
<img
src="./img/store-image_by-andrew-neel-unsplash.jpg"
alt="a woman with long hair drinks coffee and codes"
/>
</div>
</div>
<footer>
<hr id="line" />
<p id="JoinUs">Join us on</p>
<div class="social-media-icons">
<img src="img/twitter-icon.svg" alt="Twitter logo" class="sm-icons" />
<img
src="img/facebook-icon.svg"
alt="Facebook logo"
class="sm-icons"
/>
<img
src="img/instgr-icon.png"
alt="Instagram logo"
class="sm-icons"
/>
</div>
<p id="Author">Ⓒ Karma Mobility, Inc.</p>
</footer>
</div>
</body>
</html>