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
113 lines (97 loc) · 4.17 KB
/
store.html
File metadata and controls
113 lines (97 loc) · 4.17 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
<!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>Karma Store</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style2.css">
</head>
<body>
<div class="contener">
<div class="nav1">
<nav>
<img src="img/karma-logo.svg" class="logo">
<ul class="nav_bar">
<a href="index.html" class="home"> <strong>Meet Karma</strong></a>
<a href="#" class="home">How it Works</a>
<a class="home" id="active" href="#" class="home">Store</a>
<a href="#" class="home">Blog</a>
<a href="#" class="home">Help</a>
<a href="#" class="home">Login</a </ul>
</nav>
</div>
<div class="form1">
<h1>Order your Karma wifi device today!</h1>
<form>
<div class="f">
<label for="username1">First name *</label>
<label for="username2">Last name *</label>
</div>
<div class="f1">
<input id="username1" type="text" name="username" />
<input id="username2" type="text" name="username" />
</div>
<label for="address" class="text_ad">Address *</label>
<input id="address" type="text" name="address" />
<label for="address" class="text_ad">Address 2 *</label>
<input id="address" type="text" name="address2" />
<div class="form_c_p">
<label for="city" class="city5">City *</label>
<label for="postcode" class="post5">Postcode *</label>
</div>
<div class="input_c_p">
<select id="city" name="city">
<option value="Select" selected>Select your city...</option>
<option value="Kartoum">Kartoum</option>
<option value="Kartoum">London</option>
</select>
<input id="postcode" type="text" name="postcode" />
</div>
<br>
<label for="color" class="color">Select a colour</label>
<div class="color_radio">
<input id="orange" class="orange" type="radio" name="size" value="Karma orange" />
<div class="lab_1"><label for="small">Karma orange</label></div>
<input id="grey" type="radio" name="size" value="Space Grey" checked />
<div class="lab_2"> <label for="grey">Space Grey</label></div>
</div>
<br>
<div class="checkbox1">
<div class="order_main">
<input id="order1" type="checkbox" name="order" />
</div>
<label class="order_leble" for="order">By placing your order you agree to Karma's <a href="#"
class="term">Terms and Conditions.</a> *</label>
</div>
<br>
<button>Place my order</button>
</form>
</div>
<div class="img1">
<img src="level-2/store-image_by-andrew-neel-unsplash.jpg" class="img2">
</div>
<div class="foot">
<hr>
<footer>
<h5>Join US</h5>
<div class="footer_logo">
<div class="twitter g4">
<img src="img/twitter-icon.svg">
</div>
<div class="facebook g4">
<img src="img/facebook-icon.svg">
</div>
<div class="instagram g4">
<img src="img/instagram-icon.svg">
</div>
</div>
<div class="copytext">
<p>© Karma Mobility,Inc</p>
</div>
</footer>
</div>
</div>
</body>
</html>