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
97 lines (59 loc) · 3.07 KB
/
store.html
File metadata and controls
97 lines (59 loc) · 3.07 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
<!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 Store Page</title>
<link href="https://fonts.googleapis.com/css?family=Roboto:400,500,300" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="css/Karma Store Page CSS.css" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
</head>
<body>
<nav class="top-navigation">
<div class="content">
<ul class="links">
<li class="active">Meet Karma</li>
<li>How it Works</li>
<li><a href="store.html" target="_blank" style="text-decoration-line: none; text-decoration-color: rgb(235, 127, 4);">Store</a></li>
<li>Blog</li>
<li>Help</li>
<li>Login</li>
</ul>
<img class="logo" src="img/karma-logo.svg" alt="Logo Image" width="26">
</div>
</nav>
<main>
<form>
<div class="heading1">
Order your Karma wifi device today!
</div>
<label class="first-name-label" for="first-name">First name *</label>
<input class="first-name" type="text" name="first-name" />
<label class="last-name-label" for="last-name">Last name *</label>
<input class="last-name" type="text" name="last-name" />
<label class="address1-label" for="address1">Address *</label>
<input class="address1" type="text" name="address1" />
<label class="address2-label" for="address2">Address 2</label>
<input class="address2" type="text" name="address2" />
<label class="city-label" for="city">City *</label>
<input class="city-box" type="text" name="address2" />
<select name="city" id="city">
<option value="select your city">Select your city...</option>
</select>
<label class="postcode-label" for="postcode">Postcode *</label>
<input class="postcode" type="text" name="postcode" />
<label class="colour-label" for="colour">Select a colour</label>
<input id="colour1" type="radio" name="colour" value="Karma orange" checked />
<label id="colour1-label" for="Karma orange">Karma orange</label>
<input id="colour2" type="radio" name="colour" value="Space Grey" />
<label id="colour2-label" for="Space Grey">Space Grey</label>
<input class="terms" type=" checkbox" name="terms" value="terms" selected />
<label class="terms-label" for="terms">By placing your order you agree to Karma's <a href="#" style="color: #E0633A;">Terms and Conditions</a>. * </label>
<button class="submit-btn"><span class="submit-txt">place my order</span></button>
<div class="girl-img">
<img src="img/Girl working at desk.png" alt="Girl working at desk">
</div>
</form>
</main>
</body>
</html>