forked from CodeYourFuture/HTML-CSS-Module-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindexstore.html
More file actions
126 lines (113 loc) · 3.42 KB
/
Copy pathindexstore.html
File metadata and controls
126 lines (113 loc) · 3.42 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
126
<!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 href='https://fonts.googleapis.com/css?family=Roboto:400,500,300' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
</head>
<header>
<nav>
<div>
<img class= "logo" src="img/karma-logo.svg"> </div>
<ul class="nav-bar nav-bar-list">
<li> <a href="index.html" target="_blank">Home</a></li>
<li> <a class="nav-link active"href="#">Meet karma</a></li>
<li> <a class="nav-link active"href="#">How It Works</a></li>
<li> <a class="nav-link active"href="#">Store</a></li>
<li> <a class="nav-link active"href="#">Blog</a></li>
<li> <a class="nav-link active"href="#"> Help</a>"</li>
<li> <a class="nav-link active"href="#">Login</a></li>
</ul>
</nav>
<main class="conteiner">
<form>
<h1 class="order-title">Order Your Karma WiFi device today!</h1>
<br>
<br>
<br
<div>
<label for="FirstName" class="label-karma">First name</label>
<input class="input-name" type="text" name="FirstName" id="FirstName"required>
<label for="LastName" class="label-karma">Last name</label>
<input class="input-name" type="text" name="LastName" id="LastName" required>
</div>
<br>
<br>
<div>
<label for="Adress" class="label-karma">Adress</label>
<input class="input-adress" type="text" name="Adress" id="Adress"required>
</div>
<br >
<br>
<div>
<label for="Adress 2" class="label-karma">Adress 2</label>
<input class="input-adress" type="text" name="Adress" id="Adress 2">
</div>
<br>
<br>
<div>
<label for="city" class="label-karma">City</label>
<select name="city" id="city">
<option value="">Lisbon</option>
<option value="">Praia</option>
<option value="">Brasilia</option>
<option value="">La paz</option>
<option value="">Porto</option>
</select>
<label for="Postcode" class="label-karma">Postcode</label>
<input type="text" name="Adress" id="Postcode"required>
</div>
<br>
<br>
<div>
<label for="color" class="label-karma">Select Color</label>
</div>
<br>
<div>
<input type="radio" name="color" id="color" value="">
<label for="color" class="label-color">Karma Orange</label>
<input type="radio" name="color" id="color" value="">
<label for="color" class="label-color">Space Grey</label>
</div>
<br>
<br>
<br>
<div>
<input type="checkbox" name="" id=""required>
<label for="" class="label-checkbox">By placing your order you agree to karma <span>Terms and conditions</span></label>
</div>
<br>
<div>
<button type="submit" class="btn-karma">Place my order</button>
</div>
</form>
<div>
<img src="level-2/store-image_by-andrew-neel-unsplash.jpg" alt="" class="div-img">
</div>
</main>
<!--start footer section-->
<footer class="footer">
<p class="footer-h">Join us on</p>
<ul class="social-contact">
<li class="menu-social">
<img src="img/twitter-icon.svg" />
</li>
<li class="menu-social">
<img src="img/facebook-icon.svg" />
</li>
<li class="menu-social">
<img src="img/instagram-icon.svg" />
</li>
</ul>
<p class="footer-copyright-text">© Karma Mobility, Inc.</p>
</class>
</main>
</header>
<body>
</body>
</html>