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
95 lines (93 loc) · 4.19 KB
/
Copy pathstore.html
File metadata and controls
95 lines (93 loc) · 4.19 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.0">
<title>Karma Mobility - Order Form</title>
<link rel="stylesheet" href="./css/styles.css">
<link rel="stylesheet" href="./css/store.css">
</head>
<body>
<!-- Navigation Bar -->
<nav>
<div class="logo">
<img src="./img/karma-logo.svg" alt="Karma Logo">
</div>
<ul class="nav-links">
<li><a href="index.html">How it Works</a></li>
<li><a href="#store">Store</a></li>
<li><a href="#blog">Blog</a></li>
<li><a href="#help">Help</a></li>
<li><a href="#login">Login</a></li>
</ul>
</nav>
<!-- Order Form Section -->
<section class="order-form-section">
<div class="order-form-container">
<div class="form-left">
<h1>Order your Karma wifi device today!</h1>
<form action="#" method="post">
<div class="form-group text-input">
<label for="first-name">First name *</label>
<input type="text" id="first-name" name="first-name" required>
</div>
<div class="form-group text-input">
<label for="last-name">Last name *</label>
<input type="text" id="last-name" name="last-name" required>
</div>
<div class="form-group text-input">
<label for="address">Address *</label>
<input type="text" id="address" name="address" required>
</div>
<div class="form-group text-input">
<label for="address2">Address 2</label>
<input type="text" id="address2" name="address2">
</div>
<div class="form-group text-input">
<label for="city">City *</label>
<select id="city" name="city" required>
<option value="" disabled selected>Select your city...</option>
<option value="new-york">New York</option>
<option value="los-angeles">Los Angeles</option>
<option value="chicago">Chicago</option>
<!-- Add more cities as needed -->
</select>
</div>
<div class="form-group text-input">
<label for="postcode">Postcode *</label>
<input type="text" id="postcode" name="postcode" required>
</div>
<div class="form-group">
<label>Select a colour</label>
<div class="radio-group">
<input type="radio" name="color" value="orange" checked>
<label>Karma orange</label>
<input type="radio" name="color" value="grey">
<label>Space Grey</label>
</div>
</div>
<div class="form-group checkbox-group">
<input type="checkbox" name="terms" required>
<label>
By placing your order you agree to Karma's <a href="#">Terms and Conditions</a>. *
</label>
</div>
<button type="submit" class="btn-order">Place my order</button>
</form>
</div>
<div class="form-right">
<img src="./img/store-image_by-andrew-neel-unsplash.jpg" alt="Person working in a cafe">
</div>
</div>
</section>
<!-- Footer -->
<footer>
<p>© Karma Mobility, Inc.</p>
<div class="social-media">
<a href="#"><img src="img/twitter-icon.svg" alt="Twitter"></a>
<a href="#"><img src="img/facebook-icon.svg" alt="Facebook"></a>
<a href="#"><img src="img/instagram-icon.svg" alt="Instagram"></a>
</div>
</footer>
</body>
</html>