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
111 lines (104 loc) · 3.79 KB
/
store.html
File metadata and controls
111 lines (104 loc) · 3.79 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
<!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/css2?family=Edu+VIC+WA+NT+Beginner&display=swap" rel="stylesheet">
<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>
<body>
<header class="header">
<img src="../img/karma-logo.svg" alt="logo" />
<nav class="nav-bar">
<ul class="nav-List">
<li class="navigation__item">
<a class="navigation__link" href="#">Meet Karma</a>
</li>
<li class="navigation__item">
<a class="navigation__link" href="#">How it works</a>
</li>
<li class="navigation__item">
<a class="navigation__link" href="#">Store</a>
</li>
<li class="navigation__item">
<a class="navigation__link" href="#">Blog</a>
</li>
<li class="navigation__item">
<a class="navigation__link" href="#">Help</a>
</li>
<li class="navigation__item">
<a class="navigation__link" href="#">Login</a>
</li>
</ul>
</nav>
</header>
<hr class="New-line">
<div class="container">
<div class="form-h1">
<h1 class="store-title">Order your Karama wifi device today!</h1>
<form>
<div class="first-line">
<div class="first-name">
<label for="firstname">First name<sup>*</sup></label>
<input id="firstname" type="text" value="" />
</div>
<div class="last-name" >
<label for="lastname">Last name<sup>*</sup></label>
<input id="lastname" type="text" value="" />
</div>
</div>
<div>
<div class="address-bar">
<label for="address1">Address*</label>
</div>
<input id="address1" type="text" value=""/>
</div>
<div class="address-bar">
<label for="address2">Address 2</label>
</div>
<input id="address2" type="text" value=""/>
<div class="post">
<section class="city-part">
<div class="option"><label for="city">City<sup>*</sup>:</label></div>
<select id="city" required >
<option class="drop-down-city" disabled selected value> Select your City</option>
<option value="v">London</option>
<option value="s">Manchester</option>
<option value="o">Hartlepool</option>
<option value="a">Leeds</option>
</select>
</section>
<section class="post-code">
<div class="pcode"><lable for="postcode">Postcode<sup>*</sup></lable></div>
<input id="postcode" type="text" value=""/>
</section>
</div>
<p class="s-color">
Select a colour
</p>
<input type="radio" id="html" name="fav_language" value="HTML">
<label for="html">Karama Orange</label>
<input type="radio" id="css" name="fav_language" value="CSS">
<label for="css">Space grey</label></br>
<input type="checkbox" id="terms" name="terms" value="term1" checked>
<label for="terms">By placing your order you agree to Karama's<span> Terms and conditions<sup>*</sup></span> </label></br>
<button class="llast-button">Place my order</button>
</form>
</div>
<div class="img-store"></div>
</div>
<footer class="foot">
<p class="after-underline">Join us now</p>
<div>
<img class="sec-svg" src="../img/twitter-icon.svg" alt="twitter" width="20px" height="20px" >
<img class="sec-svg" src="../img/facebook-icon.svg" width="20px" height="20px" alt="facebook">
<img class="sec-svg" src="../img/instagram-icon.svg" alt="insta" width="20px" height="20px">
<p>@Karmamobility.Inc</p>
</div>
</footer>
</body>
</html>