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
110 lines (96 loc) · 4.02 KB
/
Copy pathstore.html
File metadata and controls
110 lines (96 loc) · 4.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Store</title>
<link rel="stylesheet" href="/css/style.css">
<link rel="shorcut icon" type="image/x-icon" href="/favicon.ico">
</head>
<body>
<header>
<img class="img" src="img/karma-logo.svg" alt="logo of karma">
<nav>
<ul>
<li class="navbold"><a href="index.html">Meet Karma</a></li>
<li><a href="#">How it Works</a></li>
<li><a href="#">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="main">
<section class="section">
<h1 class="orderKarma">Order your Karma wifi device today!</h1>
<form class="form">
<div class="one">
<div>
<label for="name">First name*</label>
<input id="name" type="text">
</div>
<div>
<label for="surname">Last name*</label>
<input id="surname" type="text">
</div>
</div>
<div class="two">
<label for="address">Address*</label>
<input id="address" type="text">
</div>
<div class="three">
<label for="address2">Address 2</label>
<input id="address2" type="text">
</div>
<div class="four">
<div>
<label for="city">City*</label >
<select id="city" name="city" required>
<option value=" " disabled selected hidden>Select your city</option>
<option value="london">london</option>
<option value="manchester">Manchester</option>
<option value="Birmigan">Birmigan</option>
<option value="glasgow">Glasgow</option>
<option value="ireland">Ireland</option>
</select>
</div>
<div>
<label for="pc">Post Code*</label>
<input id="pc" type="text">
</div>
</div>
<div class="five">
<fieldset>
<legend>select a color</legend>
<input id="selectcolor" type="radio" name="color" checked>
<label for="selectcolor">Karma orange</label>
<input id="selectcolor" type="radio" name="color">
<label for="selectcolor">Space grey</label>
</fieldset>
</div>
<div class="six">
<input id="terms" type="checkbox" class="checkbox" checked required>
<label for="terms">By placing yosur order you agree to Karma's <a href="#">Terms & Conditions</a>. *</label>
</div>
<div class="seven">
<input type="submit" value="Place my order">
</div>
</form>
</section>
<div class="photo">
</div>
</div>
<hr>
<footer>
<p class="Join">Join us on</p>
<ul>
<li><a href="https://twitter.com/"><img src="/img/twitter-icon.svg" alt="twitterLogo"></a></li>
<li><a href="https://www.facebook.com/"><img src="/img/facebook-icon.svg" alt="facebookLogo"></a></li>
<li><a href="https://www.instagram.com/"><img src="/img/instagram-icon.svg" alt="instagramLogo"></a></li>
</ul>
<p>©Karma Mobility,Inc.</p>
</footer>
</body>
</html>