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
155 lines (135 loc) · 5.48 KB
/
store.html
File metadata and controls
155 lines (135 loc) · 5.48 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
<!DOCTYPE html>
<html lang="en">
<header></header>
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title>Karma</title>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx"
crossorigin="anonymous"
/>
<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>
<nav class="topnav">
<div class="content">
<ul class="link">
<li class="active"><a href="index.html">Meet Karma</a></li>
<li>How it Works</li>
<li><a href="store.html" style="color:#DE6E49">Store</a></li>
<li>Blog</li>
<li>Help</li>
<li>Log in</li>
</ul>
<img
class="logo"
src="img/karma-logo.svg"
alt="karma-logo"
width="26"
/>
</div>
</nav>
</header>
<!-- middle section -->
<main>
<section>
<div class="mainGrid">
<!-- LHS contains the form on the left -->
<div class="LHS" >
<h3>Order your Karma wifi device today!</h3>
<form class="row g-3">
<div class="col-md-6">
<label for="fname" class="form-label">First Name*</label>
<input type="name" class="form-control" id="fname" required>
</div>
<div class="col-md-6">
<label for="Lname" class="form-label">Last Name*</label>
<input type="name" class="form-control" id="lname" required>
</div>
<div class="col-12">
<label for="inputAddress" class="form-label">Address 1*</label>
<input type="text" class="form-control" id="inputAddress" required>
</div>
<div class="col-12">
<label for="inputAddress2" class="form-label">Address 2</label>
<input type="text" class="form-control" id="inputAddress2">
</div>
<div class="col-md-8">
<label for="inputcity" class="form-label">City*</label>
<select id="inputcity" class="form-select" required>
<option selected>Select your city...</option>
<option>Sheffield</option>
<option>London</option>
<option>Manchester</option>
<option>Leeds</option>
</select>
</div>
<div class="col-md-4">
<label for="inputZip" class="form-label">Postcode*</label>
<input type="text" class="form-control" id="inputZip">
</div>
<div class="radios">
<p>Select a colour</p>
<label class="radio-inline">
<input type="radio" name="optradio" checked>Karma orange</label>
<label class="radio-inline">
<input type="radio" name="optradio">Space Grey</label>
</div>
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="flexCheckDefault" checked>
<label class="form-check-label" for="flexCheckDefault">
By placing your order you agree to Karma's <p style="color: #DE6E49">Terms and Conditions.*</p></label>
</div>
</form>
<button class="endbutton">Place my order</button>
</div>
<!-- RHS contains the form on the right -->
<div class="RHS">
<img class="rhsImage" src="/level-2/store-image_by-andrew-neel-unsplash.jpg" alt="">
</div>
</div>
</section>
</main>
<!-- middle section -->
<footer class="inc storefooter">
<section class="never">
<div class="socials">
<p>Join us on</p>
<img
src="/img/twitter-icon.svg"
alt="twitter icon"
width="30"
height="30"
/><span class="icon fa fa-twitter"></span>
<img
src="/img/facebook-icon.svg"
alt="facebook icon"
width="30"
height="30"
/>
<img
src="/img/instagram-icon.svg"
alt="instagram icon"
width="30"
height="30"
/>
</div>
</section>
<p>@Karma Mobility,Inc</p>
</footer>
</body>
</html>