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
145 lines (125 loc) · 6.13 KB
/
store.html
File metadata and controls
145 lines (125 loc) · 6.13 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
<!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 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 class="header">
<section class="header">
<div class="container">
<img class="logo" src="img/karma-logo.svg" alt="Logo Image" width="26" />
<nav class="navigation">
<ul class="navigation__list">
<li class="navigation__item" ><a href="index.html">Meet Karma </a></li>
<li class="navigation__item">How it Works</li>
<li class="navigation__item navigation__item--active">Store</li>
<li class="navigation__item">Blog</li>
<li class="navigation__item">Help</li>
<li class="navigation__item">Login</li>
</ul>
</nav>
</div>
</section>
</header>
<!-- MAIN -->
<main class="main-container">
<section class="form-container">
<br> <br>
<h1>Order your Karma wifi device today!</h1>
<!-- THE FORM -->
<form class="form">
<fieldset class="karma-form">
<!-- first/last name -->
<div class="row">
<div class="column">
<label for="first-name" class="field-title">First name *</label>
<input type="text" name="first-name" required>
</div>
<div class="column">
<label for="last-name" class="field-title">Last name *</label>
<input type="text" name="last-name" required>
</div>
</div>
<!-- home address -->
<div class="column">
<label for="home-address" class="field-title">Address *</label>
<input type="home-address" name="home-address" required>
</div>
<!-- home address 2 -->
<div class="column">
<label for="home-address" class="field-title">Address 2</label>
<input type="home-address" name="home-address" required>
</div>
<div class="row">
<!-- city -->
<div class="column">
<label for="city" class="field-title">City *</label>
<select name="city" class="city" required>
<option disabled selected hidden>Select your city</option>
<option value="Birmingham">Birmingham</option>
<option value="london">London</option>
<option value="Istanbul">Istanbul</option>
<option value="Paris">Paris</option>
<option value="Washington">Washington</option>
<option value="Munchen">Munchen</option>
<option value="Rome">Rome</option>
</select>
</div>
<!-- postcode -->
<div class="column">
<label for="postcode" class="field-title">Postcode *</label>
<input type="postcode" name="postcode" class="postcode" required>
</div>
</div>
<!-- radio buttons -->
<div class="radio-container">
<label for="karma-color" class="field-title">Select a color</label>
<div class="radio-group">
<div class="row">
<input type="radio" name="karma-color" required>
<label for="radio">Karma orange</label>
</div>
<div class="row">
<input type="radio" name="karma-color">
<label for="radio">Space grey</label>
</div>
</div>
</div>
<!-- checkbox -->
<div class='tc-container'>
<input type="checkbox" name="order_tc" id="order_tc" required />
<span for="checkbox">By placing your order you agree to Karma's <a href="#">Terms and Conditions</a>. *</span>
</div>
<!-- button -->
<div class="form-button">
<button type="submit" class="button">Place my order</button>
</div>
</fieldset>
</form>
</section>
<!-- image -->
<div class="form-img">
<img class="img" src="img/store-image_by-andrew-neel-unsplash.jpg"
alt="woman sitting at table working on laptop with coffee in hand" />
</div>
</main>
<footer class="footer">
<p class="footer__text">Join us on</p>
<div class="footer__links">
<a href="#"><img class="footer__links__icon" src="./img/twitter-icon.svg" alt="twitter icon" />
</a>
<a href="#"><img class="footer__links__icon" src="./img/facebook-icon.svg" alt="facebook icon" />
</a>
<a href="#"><img class="footer__links__icon" src="./img/instagram-icon.svg" alt="instagram icon" />
</a>
</div>
<p class="footer__text--muted">© Karma Mobility Inc.</p>
</footer>
</body>
</html>