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
101 lines (99 loc) · 3.21 KB
/
store.html
File metadata and controls
101 lines (99 loc) · 3.21 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
<!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- Karma</title>
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
</head>
<body>
<header>
<img src="./img/karma-logo.svg" width="30px" alt="">
<Ul>
<li><a href="#">Meet Karma</a></li>
<li><a href="#">How it works</a></li>
<li><a class="store" href="#">Store</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Help</a></li>
<li><a href="#">Login</a></li>
</ul>
</header>
<main class="store-main">
<fieldset>
<form>
<h1>Add Your Karma Wifi Today!</h1>
<div class="grid-2">
<div>
<label for="name">Name*</label>
<input type="text" name="name" id="name">
</div>
<div>
<label for="surname">Surname*</label>
<input type="text" name="surname" id="surname" value="surname">
</div>
</div>
<div>
<label for="address">Address*</label>
<input type="text" name="address" id="adress">
</div>
<div>
<label for="adress">Address 2</label>
<input type="text" name="address">
</div>
<div class="grid-2">
<div>
<label for="city">City</label>
<select name="city" id="city" name="city" required>
<option value="Manchester">Manchester</option>
<option value="Liverpool">Liverpool</option>
<option value="London">London</option>
<option value="Birmingham">Birmingham</option>
</select>
</div>
<div>
<label for="postcode">Postcode</label>
<input type="text" name="postcode" id="postcode">
</div>
</div>
<div class="radio">
Select a Color
</div>
<label for="Karma Orange">Karma Orange</label>
<input type="radio" name="color" id="karma orange" value="karma orange">
<div class="checkbox">
<label for="Space Grey">Space grey</label>
<input type="radio" name="color" id="space grey" value="space grey">
</div>
</div>
<div class="term">
By placing an order you agree to Karma's <a class="terms" href="https://example.com">Terms and Conditions</a>
<label for=""></label>
<input class="check" type="checkbox">
</div>
<div>
<button>Place my order</button>
</div>
</form>
<footer>
<h6 >Join Us On</h6>
<div class="icons">
<a class="icons" href="#">
<img src="./img/twitter-icon.svg" alt="twitter">
</a>
<a class="icons" href="#">
<img src="./img/facebook-icon.svg" alt="facebook">
</a>
<a class="icons" href="#">
</a>
<img src="./img/instagram-icon.svg" alt="insta">
</div>
<h5>Karma mobility Inc</h5>
</a>
</footer>
</fieldset>
<img class="lady" src="./level-2/store-image_by-andrew-neel-unsplash.jpg">
</body>
</html>