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
executable file
·95 lines (84 loc) · 3.58 KB
/
store.html
File metadata and controls
executable file
·95 lines (84 loc) · 3.58 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
<!DOCTYPE html>
<html lang="en">
<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://fonts.googleapis.com/css?family=Roboto:400,500,300" rel="stylesheet type='text/css">
<link href="css/normalize.css" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
</head>
<body>
<!-- Header -->
<header>
<nav>
<img src="img/karma-logo.svg" class="logo">
<ul>
<li style="font-weight: bold; font-weight: 600; color: #5c5f65;"><a href="index.html">Meet Karma</a></li>
<li><a href="#">How it Works</a></li>
<li><a href="store.html">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="form">
<main>
<h1>Order your Karma wifi device today!</h1>
<div class="formbox">
<form>
<div class="name-fields">
<label for="first-name">First name *</label>
<input type="text" id="first-name" name="first-name" required>
<label for="last-name">Last name *</label>
<input type="text" id="last-name" name="last-name" required>
</div>
<label for="address">Address *</label>
<input type="text" id="address" name="address" required>
<label for="address2">Address 2</label>
<input type="text" id="address2" name="address2">
<label for="city">City *</label>
<select id="city" name="city" required>
<option value="" disabled selected>Select your city...</option>
<option value="city1">City 1</option>
<option value="city2">City 2</option>
<option value="city3">City 3</option>
</select>
<label for="postcode">Postcode *</label>
<input type="text" id="postcode" name="postcode" required>
<div class="radio-group">
<label>
<input type="radio" name="color" value="karma-orange" checked> Karma orange
</label>
<label>
<input type="radio" name="color" value="space-grey"> Space Grey
</label>
</div>
<div class="checkbox-group">
<input type="checkbox" id="terms" name="terms" required>
<label for="terms">By placing your order you agree to Karma's <a href="#">Terms and Conditions</a>.</label>
</div>
<button type="submit" class="btn">Place my order</button>
</form>
</div>
</main>
<aside>
<img src="/level-2/store-image_by-andrew-neel-unsplash.jpg">
</aside>
</div>
<footer>
<hr>
<div class="foot">
<p>Join us on</p>
<ul class="social">
<li><a href="#"><img src="img/twitter-icon.svg" alt="Twitter"></a></li>
<li><a href="#"><img src="img/facebook-icon.svg" alt="Facebook"></a></li>
<li><a href="#"><img src="img/instagram-icon.svg" alt="Instagram"></a></li>
</ul>
<p>© Karma Mobility, Inc.</p>
</div>
</footer>
</body>
</html>