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
136 lines (96 loc) · 4.83 KB
/
store.html
File metadata and controls
136 lines (96 loc) · 4.83 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
<!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>Document</title>
<link rel="stylesheet" href="css/store.css">
</head>
<body>
<header class="header">
<a href="index.html"><img src="img/karma-logo.svg"></a>
<div class="nav-bar">
<ul>
<li><a href="#"><strong>Meet karma</strong></a></li>
<li><a href="#">How it works</a></li>
<li><a href="store.css"><span style="color:red;">Store</span></a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Help</a></li>
<li><a href="#">login</a></li>
</ul>
</div></header>
<div class="form-image">
<form>
<h1>Order your Karma WiFi device today!</h1>
<div class="input-label">
<div class="label-firstname"> <label for="firstname">Firstname*</label></div>
<div class="label-lastname"> <label for="lastname">Lastname*</label></div>
</div>
<div class="input-field">
<div> <input type="text" name="firstname" id="firstname"></div>
<div><input type="text" name="lastname" id="lastname"></div>
</div>
<div class="address">
<label for="address">Address*</label>
<input type="text" name="address" id="address">
</div>
<div class="address">
<label for="address2">Address2</label>
<input type="text" name="address2" id="address2">
</div>
<div class="input-label">
<div class="label-firstname"> <label for="city">City</label></div>
<div class="label-lastname"><label for="postcode">Postcode</label></div>
</div>
<div class="input-field-drop">
<div>
<select id="city">
<option value="Select your city">Select your city</option>
<option value="Select your city">London</option>
<option value="Select your city">Glasgow</option>
<option value="Select your city">Liverpool</option>
<option value="Select your city">Manchester</option>
</select>
</div>
<div>
<input type="text" name="postcode" id="postcode">
</div>
</div>
<h4>Select a color</h4>
<div class="color">
<div>
<input type="radio" name="color" id="color" checked style="color:orange;">
</div>
<div>
<label for="color">Karma Orange</label>
</div>
<div>
<div><input type="radio" name="color" id="color" ></div>
</div>
<div><div> <label for="color">Space Grey</label></div>
</div>
</div>
<div class="checkbox">
<div>
<input type="checkbox" name="checkbox" id="checkbox" checked style="color:orange">
</div>
<div>
<label for="checkbox" style="font-size:15px; text-align: left; align-items: left;">By placing your order you agree to Karma's <span style="color:red" ><u>terms and <br>conditions.*</u></span> </label>
</div></div>
<button class="btn-form">Place my Order</button>
</form>
<img src="level-2/store-image_by-andrew-neel-unsplash.jpg">
</div>
<hr>
<footer>
<p>Join us on</p>
<div>
<img src="img/twitter-icon.svg">
<img src="img/facebook-icon.svg">
<img src="img/instagram-icon.svg">
<p>@Karma Mobility Inc</p>
</div>
</footer>
</body>
</html>