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
138 lines (120 loc) · 6.23 KB
/
store.html
File metadata and controls
138 lines (120 loc) · 6.23 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
<!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>Karma design</title>
<link rel="stylesheet" href="store.css">
</head>
<body>
<header>
<img class="logo-image" src="/img/karma-logo.svg" alt="logo-img">
<ul class="nav-text">
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="#">Meet Karma</a>
</li>
<li>
<a href="#">How it works</a>
</li>
<li>
<a href="#">Store</a>
</li>
<li>
<a href="#">Blog</a>
</li>
<li>
<a href="#">Help</a>
</li>
<li>
<a href="#">Login</a>
</li>
</ul>
</header>
<main>
<section class="formSection">
<div class="formWrapper">
<h1>order your karma wifi device today</h1>
<form action="/somewhere">
<div class="names-wrapper input-space">
<div class="name-style">
<label class="label-style name-style" for="firstName">First name*:</label>
<input class="full-w-input" id="firstName" type="text">
</div>
<div class="name-style">
<label class="label-style name-style" for="lasttName">Last name*:</label>
<input class="full-w-input" id="lasttName" type="text">
</div>
</div>
<div class="input-space">
<label class="label-style" for="address1">Address*:</label>
<input class="full-w-input" id="address1" type="text">
</div>
<div class="input-space">
<label class="label-style" for="address2">Address2*:</label>
<input class="full-w-input" id="address2" type="text">
</div>
<div class="names-wrapper input-space">
<div class="countryInput">
<label class="label-style" for="country">Select country:</label>
<select required class="full-w-input selectInput" name="country" id="country">
<option selected disabled value="" >Select your city...</option>
<option value="uk">uk</option>
<option value="france">france</option>
<option value="italy">italy</option>
<option value="germany">germany</option>
</select>
</div>
<div class="postCode">
<label class="label-style" for="postcode">Post code*:</label>
<input class="full-w-input" id="postcode" type="text">
</div>
</div>
<fieldset class="input-space fieldset-style">
<legend class="label-style">Select a color:</legend>
<div class="radio-wrapper">
<input name="color" type="radio" id="orange" value="orange">
<label for="orange">orange</label>
</div>
<div class="radio-wrapper">
<input name="color" type="radio" id="grey" value="grey">
<label for="grey">grey</label>
</div>
</fieldset>
<div class="input-space chechbox-s">
<input type="checkbox" name="tandc" id="tandc">
<div class="tick-wrapper">
<svg class="icon" width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M15.3622 0.50079C15.0181 0.515037 14.7398 0.712002 14.5632 0.962826L5.80398 13.1336L2.44017 8.45967C2.35049 8.33105 2.23519 8.21633 2.09472 8.13198C1.95137 8.04589 1.78691 7.99482 1.61264 7.99235C1.43827 7.98989 1.27215 8.03635 1.12618 8.11916C0.98155 8.2012 0.862485 8.31531 0.769755 8.44416C0.67702 8.57301 0.609113 8.71844 0.564752 8.86942C0.520316 9.02065 0.498888 9.17939 0.500044 9.33735C0.501201 9.4953 0.52495 9.6537 0.571762 9.80419C0.617957 9.9527 0.687267 10.0955 0.78095 10.2216L4.97435 16.0482L4.97441 16.0483C5.15845 16.3039 5.44947 16.5 5.80398 16.5C6.15848 16.5 6.4495 16.3039 6.63355 16.0483L6.63361 16.0482L16.2225 2.72465C16.3635 2.53304 16.4489 2.30336 16.4829 2.07016C16.5171 1.83492 16.5001 1.58974 16.4309 1.36263C16.3621 1.13681 16.239 0.920931 16.057 0.758696C15.8718 0.593603 15.6297 0.48983 15.3624 0.500781L15.3828 0.999243L15.3622 0.50079Z" fill="#DE6E49" stroke="#DE6E49"/>
</svg>
</div>
<label class="tandc" for="tandc">
By placing your order you agree to Karma's
<a class="tanc-a" href="/termsandconditions">terms and conditions</a>. *
</label>
</div>
<button class="primary-button">
Place my order
</button>
</form>
</div>
<div class="image-wrapper">
<img src="/img/store-image_by-andrew-neel-unsplash.jpg" alt="">
</div>
</section>
</main>
<hr>
<footer>
<h5>join us on</h5>
<div class="footer-wrap">
<img class="footer-img" src="/img/twitter-icon.svg" alt="twitter">
<img class="footer-img" src="/img/facebook-icon.svg" alt="facebook">
<img class="footer-img" src="/img/instagram-icon.svg" alt="instagram">
</div>
<p class="footer-p-tag">© Karma Mobility, Inc.</p>
</footer>
</body>
</html>