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
125 lines (98 loc) · 4.18 KB
/
store.html
File metadata and controls
125 lines (98 loc) · 4.18 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
<!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>Document</title>
<link rel="stylesheet" href="css/store.css">
</head>
<body>
<header>
<div class="logo"><img src="./img/karma-logo.svg" alt=""></div>
<Nav>
<ul>
<li><a href="./index.html">Meet Karma</a></li>
<li><a href="#">How it Work</a></li>
<li><a href="#">Store</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Help </a></li>
<li><a href="#">Log in </a></li>
</ul>
</Nav>
</header>
<main>
<div class="name">
<h1>order your karma wifi device today!</h1>
<form>
<div class="a">
<div>
<label for=" first name">First name</label><br>
<input class="First-name" type="text" name="frist name" value="">
</div>
<div>
<label for=" last name">Last name</label><br>
<input class="Last-name" type="text" name="Last name" value="">
</div>
</div>
<div class="b">
<div>
<label for="Address">Address</label><br>
<input class="address" type="text" name="Address" value="">
</div>
<div>
<label for="Address2">Address2</label><br>
<input class="address2 " type="text" name="address2" value="">
</div>
</div>
<div class="city">
<div class="label">
<label for="select your City">select your City</label><br>
<select id="select-your-city" name="select your city">
<option name="city" value="London">London</option>
<option name="city" value="Manchester">Manchester</option>
<option name="city" value="Shefield">Shefield</option>
<option name="city" value="Birmingham">Birmingham</option>
<option name="city" value="Liverpol">Liverpol</option>
</select>
</div>
<div>
<label for="postcode">postcode</label><br>
<input id="postcode" type="text" name="postcode"/>
</div>
</div>
<div>
<p> Select a colour</p>
<input id="orange" type="radio" name="size" value="colour" />
<label for="karma orange">Karma orange</label>
<input id="gray" type="radio" name="size" value="colour" checked />
<label for="space gray">Space gray</label>
</div>
<br>
<div>
<input id="agreement" type="checkbox" name="agreement" />
<label for="agreement">By placing your order you agree to Karma's Team and condition.</label>
</div>
<br>
<button>place my order</button>
</form>
</div>
<section class="img">
</section>
</main>
<footer class="footer">
<p> <strong>join us on</strong></p>
<div class="flexbox2">
<div class="box item1"><img src="./img/twitter-icon.svg">
</div>
<div class="box item2"><img src="./img/facebook-icon.svg">
</div>
<div class="box item3"><img src="./img/instagram-icon.svg">
</div>
<div class="axis main-axis"></div>
<div class="axis cross-axis"></div>
</div>
<p>karma mobility.lnc</p>
</footer>
</body>
</html>