forked from CodeYourFuture/HTML-CSS-Module-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstor.html
More file actions
102 lines (91 loc) · 3.72 KB
/
stor.html
File metadata and controls
102 lines (91 loc) · 3.72 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
<!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">
<link rel="stylesheet" href="./css/store.css">
<title>Document</title>
</head>
<body class="container">
<header class="header1">
<div class="nav-t">
<img class="image-logo" src="favicon.ico" alt="logo"/>
</div>
<div>
<nav>
<ul class="navbar">
<li><a href="#" >Meet Karma</a></li>
<li><a href="#" >How it works</a></li>
<li><a href="/stor.html" >Store</a></li>
<li><a href="#" >Blog</a></li>
<li><a href="#" >Help</a></li>
<li><a href="#" >Login</a></li>
</ul>
</nav>
</div>
</header >
<main>
<form>
<section class="f-left">
<div class="row">
<p class="st-paragragh"> Order your Karma wifi device today!</p>
<div class="name1">
<label for="text">First name*</label>
<input type="text" name="text" id="text"/>
<label for="text1">Last name*</label>
<input type="text" name="text1" id="text1" />
</div>
<div class="address">
<label for="text2">Address*</label>
<input type="address" name="radio" id="text2"/>
</div>
<div class="address">
<label for="text3">Address2*</label>
<input type="address" name="radio" id="text3"/>
</div>
<div id="city">
<div class="city1">
<label for="city"> City *</label>
<select name="place" id="city">
<option value="None">None</option>
<option value="New">Newcastle</option>
<option value="Man">Manchester</option>
<option value="Ox">Bradford</option>
<option value="Ba">Coventry</option>
<option value="Cam">Cambridge</option>
</select>
</div>
<div class="city1">
<label for="postcode"> Postcode *</label>
<input type="text" value=" " id="postcode" required />
</div>
</div>
</div>
<div>
<legend>Select a colour</legend>
<input id="small" type="radio" name="size" value="small" />
<label for="small">Karma orange</label>
<input id="medium" type="radio" name="size" value="medium" />
<label for="medium">Space Grey</label>
</div>
<div class="tik">
<input id="Terms" type="checkbox" name="terms" checked/>
<lable for="terms"> By placing your order you agree to karma's<u>Terms and Conditions.*</u></p>
</div>
<div> <input type="submit" value="place my order"></div>
</section>
<section class="column2"></section>
</form>
</main>
<footer class="foo">
<p class="par">Join us on</p>
<ul class="footer1">
<li ><img class="twitter-icon" src="img/twitter-icon.svg" /></li>
<li ><img class="fac-icon" src="img/facebook-icon.svg" /></li>
<li ><img class="inst-icon" src="img/instagram-icon.svg" /></li>
</ul>
<p class="par">©Karma Mobility,inc</p>
</footer>
</body>
</html>