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
160 lines (125 loc) · 4.96 KB
/
store.html
File metadata and controls
160 lines (125 loc) · 4.96 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Store</title>
<link
href="https://fonts.googleapis.com/css?family=Roboto:400,500,300"
rel="stylesheet"
type="text/css"
/>
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
<link rel="stylesheet" href="store.css" />
</head>
<!---------------------------BODY----------------------------------->
<body>
<!-------------HEADER SECTION -------->
<header>
<img class="logo" src="img/karma-logo.svg" alt="this is a karma logo"/>
<a href="index.html" target="_blank"> <img class="header-menu" src="level-3/menu-hamburger.svg"></a>
<div class="nav-container">
<nav>
<ul>
<a target="_blank" href="index.html"> <li>Meet Karma</li></a>
<a><li>How it Works</li></a>
<a target="_blank" href="store.html"><li>Store</li></a>
<a><li>Blog</li></a>
<a><li>Help</li></a>
<a><li>Login</li></a>
</ul>
</nav>
</div>
</header>
<hr class="header-line" />
<!-------------MAIN SECTION -------->
<main>
<form>
<!-------------------FIRST & LAST NAME-------------------------------->
<section class="section_1">
<h1>Order your Karma <br> wifi device today!</h1>
<div class="Names">
<div class="first-name">
<label for="firstname" aria-required="true">First name *</label>
<br />
<input type="text" id="firstname" autocomplete="on"/>
</div>
<div class="last-name">
<label for="lastname" aria-required="true" >Last name *</label>
<br>
<input type="text" id="lastname" autocomplete="on"/>
<br />
</div>
</div>
<!------------------------ADDRESS-------------------------------------->
<div class="Addresses">
<label for="address" aria-required="true" >Address*</label>
<br>
<input type="text" id="address1" autocomplete="on" />
<br>
<label for="address2" aria-required="true"> Address 2*</label>
<br>
<input type="text" id="address2" autocomplete="on"/>
</div>
<!-------------------------CITY/POSTCODE------------------------------>
<div class="City-Postcode">
<div>
<label for="city" aria-required="true">City*</label>
<br />
<select id="city" >
<option value="" disabled selected>Select your city.. </option>
<option value="Barcelona">Barcelona</option>
<option value="Madrid">Madrid</option>
<option value="Murcia">Murcia</option>
<option value="Zaragoza">Zaragoza</option>
<option value="Girona">Girona</option>
<option value="Bilbao">Bilbao</option>
</select>
</div>
<div>
<label for="postcode" aria-required="true">Postcode*</label>
<br />
<input type="number" id="postcode" autocomplete="on" />
</div>
</div>
<!------------------------CHECKBOX--------------------------------->
<div class="checkbox">
<h5>Select a color :</h5>
<input type="radio" id="orange" value="Karma orange" name="color"/>
<label for="orange" >Karma Orange</label>
<input type="radio" id="grey" value="Grey Space" name="color" />
<label for="grey" > Grey Space</label>
<br />
<div class="Terms-and-Conditions">
<input type="checkbox" id="term-conditions">
<label for="term-conditions">
By placing your order you agree to Karma's Terms and Conditions.
*</label>
</div>
</div>
<!-------------BUTTON---------------------------------------------->
<div class="order-button">
<button>Place my order</button>
</div>
</section>
</form>
<!-------------SECTION 2-------------------------------------------->
<section class="section_2">
<img src="level-2/store-image_by-andrew-neel-unsplash.jpg" alt="a woman with groups of gadgets" />
</section>
<!-------------END OF SECTION-------------------------------------->
</main>
</body>
<hr class="footer-line" />
<footer>
<h4>Join Us On</h4>
<div class="social_platform">
<img src="img/twitter-icon.svg" alt="this is a twitter icon"/>
<img src="img/facebook-icon.svg" alt="this is a facebook icon"/>
<img src="img/instagram-icon.svg" alt="this is an instagram icon" />
</div>
<p>© Karma Mobility Inc</p>
<p class="author">🔘Priscilla</p>
</footer>
</html>
</html>