-
-
Notifications
You must be signed in to change notification settings - Fork 619
Expand file tree
/
Copy pathstore.html
More file actions
127 lines (123 loc) · 3.84 KB
/
store.html
File metadata and controls
127 lines (123 loc) · 3.84 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
<input type="checkbox" id="" name="" value="" />
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<!-- <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> -->
<meta name="viewport" content="width=device-width,initial-scale=1" />
<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="style.css" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
</head>
<body>
<header>
<img class="logoclass" src="favicon.ico" alt="Logo" style="float: left" />
<nav class="Karmanav">
<ul class="ulnav">
<li>
<a href="index.html">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>
</nav>
</header>
<div class="storemain">
<div class="storeleft">
<div class="formtop">
<h1>Order your Karma WiFi device today!</h1>
</div>
<div>
<form action="#">
<div class="frmlable">
<label>First Name *</label>
<label for="#">Last Name *</label>
</div>
<div class="frminput">
<input type="text" />
<input type="text" />
</div>
<div class="frmaddress">
<label for="#">Address1 *</label>
<input type="text" />
<label for="#">Address2</label>
<input type="text" />
</div>
<div class="frmlable2">
<label for="#">City *</label>
<label for="#">Post Code *</label>
</div>
<div class="frminput2">
<select id="city">
<option value="lon">London</option>
<option value="man">Manchester</option>
<option value="bel">Belfast</option>
<option value="liv">Liverpool</option>
</select>
<input type="text" />
</div>
<div class="ordercolor">
<h5>Select a color:</h5>
</div>
</form>
<input type="radio" id="color1" name="color" value="color1" />
<label for="color1">Karma Orange</label>
<input type="radio" id="color2" name="color" value="color2" />
<label for="color22"> Space Grey</label><br />
<br />
<br />
<br />
<input type="checkbox" id="" name="" value="" />
<label class="terms1" for=""
>By placing your order you agree to karma's
<a class="terms2" href="#">Terms and Conditions.</a> </label
><br />
<br />
<br />
<button class="orderbtn">Place my Order</button>
</div>
</div>
<div class="imgmain">
<img
class="storeimg"
src="level-2/store-image_by-andrew-neel-unsplash.jpg"
alt="Store Image"
/>
</div>
</div>
</body>
<footer>
<div class="allfooter">
<div class="karmafooter">
<h5>Join us On:</h5>
</div>
<div class="footericons">
<img class="twit" src="img/twitter-icon.svg" alt="Twitter" />
<img class="face" src="img/facebook-icon.svg" alt="Facebook" />
<img class="inst" src="img/instagram-icon.svg" alt="Instgram" />
</div>
<div class="ftr">
<h6>@ Karma Mobility Inc.</h6>
</div>
</div>
</footer>
</html>