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
130 lines (115 loc) · 3.9 KB
/
store.html
File metadata and controls
130 lines (115 loc) · 3.9 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
<!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" />
<link rel="stylesheet" href="css/normalize.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/store.css">
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
<script
src="https://kit.fontawesome.com/a6d80728cd.js"
crossorigin="anonymous"
></script>
<title>Document</title>
</head>
<body>
<header>
<img src="img/karma-logo.svg" alt="karma logo" />
<nav>
<a href="/index.html">Meet Karma</a>
<a href="">How it Works</a>
<a href="">Store</a>
<a href="">Blog</a>
<a href="">Help</a>
<a href="">Login</a>
</nav>
</header>
<main>
<section>
<h1>Order your Karma wifi device today!</h1>
<form action="">
<div class="name_wrapper">
<div class="label_input">
<label for="f_name">First name<span>*</span></label>
<input type="text" id="f_name" />
</div>
<div class="label_input">
<label for="l_name">Last name<span>*</span></label>
<input type="text" id="l_name" />
</div>
</div>
<div class="label_input">
<label for="address">Address<span>*</span></label>
<input type="text" id="address" />
</div>
<div>
<div class="label_input">
<label for="address2">Address 2</label>
<input type="text" id="address2" />
</div>
<div class="city_postcode">
<div class="label_input">
<label for="city">City</label>
<select name="city" id="city">
<option value="-1" selected disabled>Select your city</option>
<option value="1">West Midlands</option>
<option value="2">Scotland</option>
<option value="3">London</option>
<option value="4">Northwest</option>
</select>
</div>
<div class="label_input">
<label for="postcode">Postcode<span>*</span> </label>
<input type="text" id="postcode" />
</div>
</div>
<fieldset>
<legend>Select a colour</legend>
<label class="radio_label">
<input type="radio" name="colour" class="radio_input" checked />
<div class="radio_radio_orange"></div>
Karma Orange
</label>
<div>
<label class="radio_label">
<input type="radio" name="colour" class="radio_input" />
<div class="radio_radio_grey" id="radio_grey"></div>
Space Grey
</label>
</fieldset>
</div>
<label class="checkbox">
<input type="checkbox" name="" class="checkbox_input" checked/>
<div class="checkbox_box"></div>
<div> By placing your order you agree to Karma's
<span> Terms and Conditions</span>. *</div>
</label>
<button>Place my order</button>
</form>
</section>
<div>
<aside></aside>
</main>
</div>
<div>
<footer>
<p id="footer_text1">Join us on</p>
<div class="footer_imgs_wrapper">
<div>
<img src="img/twitter-icon.svg" alt="" />
</div>
<div>
<img src="img/facebook-icon.svg" alt="" />
</div>
<div>
<img src="img/instagram-icon.svg" alt="" />
</div>
</div>
<p id="footer_text2">
<i class="fa-regular fa-copyright"></i>Karma Mobility, Inc
</p>
</footer>
</body>
</html>