-
-
Notifications
You must be signed in to change notification settings - Fork 618
Expand file tree
/
Copy pathindex.html
More file actions
79 lines (73 loc) · 2.57 KB
/
index.html
File metadata and controls
79 lines (73 loc) · 2.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="/level-3/style.css" />
<title> Store</title>
</head>
<body>
<header class="header">
<img class="korma" src="/favicon.ico">
<img src="/menu.png" id="menu-icon">
<nav class="navbar">
<ul>
<li><a href="Meet karma">Meet karma</a></li>
<li><a href="How it work">How it work </a></li>
<li><a href="Store">Store</a></li>
<li><a href="bolg">Blog </a></li>
<li><a href="help">Help </a></li>
<li><a href="login"> Login</a></li>
</ul>
</nav>
</header>
<main>
<div side class="mag-lady">
<img src="/level-2/store-image_by-andrew-neel-unsplash.jpg"width="300px">
</div>
<section class="main-container">
<h1>Order your karma Wifi <br>device today!</h1>
<form action="#">
<div class="first">
<label for="Firstname "> First name:</label>
<input type="text" id="name ">
</div><br>
<div class="Last">
<label for="Lastname"> Last name</label>
<input type="text" id="Last name"></label>
</div><br>
<div class="input-box">
<label for="Address1 "> Address1</label><br>
<input type="text" id="address ">
</div>
<div class="address2">
<label for="Firstname "> Address2:</label><br>
<input type="text" id="address ">
</div>
<div class="city">
<label for="Firstname "> City</label><br>
<input type="text" id="city ">
</div>
<div class="postcode">
<label for="Firstname "> Postcode</label><br>
<input type="text" id="postcode ">
</div><br>
<div class="selector">
<p> selector color</p>
<div class="radio-button">
<input type="radio" id="option1" name="radio" value="option1">
<label for="radio1"> karma orange </label>
<input type="radio" id="option2" name="radio" value="option2">
<label for="radio2">Space Gray</label>
</div>
<br>
<input type="checkbox">
<label class="checkbox-container">By placing your order you agree karma and condition</label>
<button class="button place">Place my order </button>
</div>
</form>
</section>
</main>
</body>
</html>