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
100 lines (94 loc) · 3.77 KB
/
store.html
File metadata and controls
100 lines (94 loc) · 3.77 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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/store.css" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
</head>
<body>
<header class="header">
<img src="img/karma-logo.svg" alt="Karma logo" width="40" height="40" />
<nav>
<ul class="navigation-menu">
<ls class="nav-item"><a class="nav-header" href="index.html">Meet Karma</a></ls>
<ls class="nav-item"><a class="nav-header" href="#">How it works</a></ls>
<ls class="nav-item"><a class="nav-header" href="#">Store</a></ls>
<ls class="nav-item"><a class="nav-header" href="#">Blog</a></ls>
<ls class="nav-item"><a class="nav-header" href="#">Help</a></ls>
<ls class="nav-item"><a class="nav-header" href="#">Login</a></ls>
</ul>
</nav>
</header>
<main>
<div class="form-container">
<div class="title">
<b>Order your Karma wifi</b>
<br> device today!</div>
<form action="form-finished.html" method="get">
<div class="first-name">
<label for="first-name">First Name *</label>
<input type="text" name="first-name" id="first-name" required>
</div>
<div class="Last-name">
<label for="Last-name">Last Name *</label>
<input type="text" name=Last-name id="Last-name" required>
<br />
</div>
<div class="Address">
<label for="Address">Address *</label><br />
<input type="text" name="Address" id="Address" required>
</div>
<div class="Address-2">
<label for="Address-2">Address 2 *</label><br />
<input type="text" name="Address-2" id="Address-2" required>
</div>
<div class="city">
<label for="city">City *</label>
<select id="city" name="city" required>
<option value="1">London</option>
<option value="2">Manchester</option>
<option value="3">Birmingham</option>
<option value="4">Edinburgh</option>
<option value="5">Bristol</option>
<option value="6">Cardiff</option>
</select>
</div>
<br />
<div class="Postcode">
<label for="Postcode">Postcode *</label><br />
<input type="text" name="Postcode" id="Postcode" required>
</div>
<div>
<div class="colour-radio">
<p><b>Select color</b></p>
<br />
<label class="karma-orange">Karma Orange
<input type="radio" value="Karma-orange" name="Karma-orange" id="karma-orange" checked>
<span class="checkmark"></span>
</label>
<label class="Space-grey">Space Grey
<input type="radio" value="Space-grey" name="Space-grey" id="Space-grey">
<span class="checkmark"></span>
</label>
</div>
<br />
<div class="checkbox">
<label for="checkbox-label">By placing your order you agree to Karma's <a href="#">Terms and Conditions.</a> *
<input id="agreement" type="checkbox" name="checked">
<span class="checkmark"></span>
</label>
</div>
<br />
<div class="submit">
<button id ="submit" type="submit">Place My Order</button>
</div>
</form>
<img class="image-form" src="./level-2/store-image_by-andrew-neel-unsplash.jpg" alt="image desktop" width="500px" >
</main>
</body>
</html>