forked from CodeYourFuture/HTML-CSS-Module-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstorepage.html
More file actions
191 lines (124 loc) · 4.54 KB
/
storepage.html
File metadata and controls
191 lines (124 loc) · 4.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
<!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>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 class="header">
<img
class="logo"
src="img/karma-logo.svg"
alt="Karma- logo"
width="30px"
height="30px"
/>
<nav id="navbar">
<ul class="nav_list">
<li class="nav_item">
<a class="nav_link" href="index.html">Meet Karma</a>
</li>
<li class="nav_item">
<a class="nav_link" href="#">How it Works</a>
</li>
<li class="nav_item">
<a class="nav_link" href="">Store</a>
</li>
<li class="nav_item">
<a class="nav_link" href="#">Blog</a>
</li>
<li class="nav_item">
<a class="nav_link" href="#">Help</a>
</li>
<li class="nav_item">
<a class="nav_link" href="#">Login</a>
</li>
</ul>
</nav>
</header>
<section class="main_store">
<div class="left">
<h1 class="text" >Order your Karma wifi device today!</h1>
<form class="orderform">
<div class="name_wrapper">
<div class="fname">
<label for="fname"><div>First name *</div></label>
<input id="fname" type="text" name="fname" required/>
</div>
<div class=lname>
<label for="lname"><div>Last name *</div></label>
<input id="lname" type="text" name="lname" required />
</div>
</div>
<div class="address_input">
<label for="address"><div>Address *</div></label>
<input class="input_size" id="address" type="text" name="address" required/>
</div>
<div>
<label for="address2"><div>Address 2</div></label>
<input class="input_size" id="address2" type="text" name="address2" />
</div>
<div class="city_wrapper">
<div >
<label for="city"><div>City *</div></label>
<select class="city" id="city" name="city" required>
<option value="" id="city" disabled selected>Select your city ...</option>
<option value="london">London</option>
<option value="manchester">Manchester</option>
<option value="newcastle">Newcastle</option>
</select>
</div>
<div >
<label for="postcode"><div>Postcode *</div></label>
<input class="postcode" id="postcode" type="text" name="postcode" required/>
</div>
</div>
<fieldset class="radio">
<legend >Select a color:</legend>
<div class="radio_color">
<input class="orange"id="color" type="radio" name="Karma_orange" value="color" checked/>
<label for="color">Karma Orange</label>
<input class="gray" id="color" type="radio" name="space_gray" value="color"/>
<label for="color">Space grey</label>
</div>
</fieldset>
<div class="check-Box">
<input type="checkbox" id="termsandconditions" required checked>
<label for="termsandconditions">By placing your order you agree to <a href="" class="tac">Karma's Terms and Conditions</a> *</label>
</div>
<button class="btn_place_my_order">Place my order</button>
</div>
</form>
</div>
<div class="right store_image">
<!-- <img src="img/store-image_by-andrew-neel-unsplash.jpg" alt="store image"> -->
</div>
</section>
<footer class="footer">
<div>
<div class="join_us_on">Join us on</div>
<section class="social_media">
<img id="twitter"src="img/twitter-icon.svg" alt="Twitter" width="20" height="20">
<section class="social_media">
<img id="facebook"src="img/facebook-icon.svg" alt="Facebook" width="20" height="20">
</section>
<section class="social_media">
<img id="instagram"src="img/instagram-icon.svg" alt="Instagram" width="20" height="20">
</section>
</div>
<div class="end"> @Karma mobility.Inc</div>
</footer>
</body>
</html>