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
114 lines (98 loc) · 5.5 KB
/
store.html
File metadata and controls
114 lines (98 loc) · 5.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Karma</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">
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<!-- Add your HTML markup here -->
<!-- Remember: Use semantic HTML tags like <header>, <main>, <nav>, <footer>, <section> etc -->
<!-- All the images you need are in the 'img' folder -->
<header class="main-header">
<img class="Karma-logo" src="./img/karma-logo.svg" alt="karma logo">
<nav id="main-nav-bar" class="nav-bar">
<ul class="nav-lists">
<li class="nav-item"><a href="index.html"><strong>Meet-karma</strong></a></li>
<li class="nav-item">How-it-works</li>
<li class="nav-item">Store</li>
<li class="nav-item">Blog</li>
<li class="nav-item">Help</li>
<li class="nav-item">Login</li>
</ul>
</nav>
</header>
<main class="main-page">
<section class="order-form">
<form action="" method="get">
<h1>Order your Karma wifi <br> device today!</h1>
<article class="name-last-name">
<div class="user-name">
<label class="label" for="name">First name *</label>
<input id="name" type="text" name="name" required >
</div>
<div class="last-name">
<label class="label" for="last-name">Last name *</label>
<input id="last-name" type="text" name="last-name" required >
</div>
</article>
<article class="address">
<label class="label" for="address">Address *</label>
<input id="address" type="text" name="address">
</article>
<article class="address2">
<label class="label" for="address2">Address 2</label>
<input id="address2" type="text" name="address2">
</article>
<article class="city-postcode">
<div class="city">
<label class="label" for="city">City *</label>
<select id="city" name="city">
<option value="" selected disabled >Select your city...</option>
<option value="1">London</option>
<option value="2">Manchester</option>
<option value="3">Birmingham</option>
</select>
</div>
<div class="postcode">
<label class="label" for="postcode" >Postcode *</label>
<input id="postcode" type="text" name="postcode" required >
</div>
</article>
<article class="color-fieldset">
<p>Select a color</p>
<input type="radio" id="orange" name="recommended" value="orange" checked>
<label for="orange" > Karma orange</label>
<input type="radio" id="grey" name="recommended" value="grey">
<label for="grey"> Space Grey</label>
</article>
<article class="terms-conditions">
<input type="checkbox" id="checkbox" name="checkbox" required >
<label for="checkbox">By placing order you agree to karma's <a href="#">Terms and conditions.</a> </label>
</article>
<button type="submit" class="myOrder-btn">Place my order</button>
</form>
</article>
</section>
</section>
<section class="form-img">
<img src="/level-2/store-image_by-andrew-neel-unsplash.jpg" alt="Girl working at desk">
</section>
</main>
<footer>
<h3>Join us on</h3>
<i> <img class="fa fa-twitter" src="/img/twitter-icon.svg" alt="twitter icon">
<img class="fa fa-facebook" src="/img/facebook-icon.svg" alt="facebook icon">
<img class="fa fa-instagram" src="/img/instagram-icon.svg" alt="Instagram icon">
</i>
<p>© Karma Mobility, Inc.</p>
</footer>
<a class="back-top-page" href="#main-nav-bar"> ☝ </a>
</body>
</html>