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
84 lines (72 loc) · 3.45 KB
/
Copy pathstore.html
File metadata and controls
84 lines (72 loc) · 3.45 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
<!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">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<main>
<main class="mobile-main">
<header class="store-header">
<img src="img/karma-logo.svg" alt="Karma Logo" class="logo" />
<nav class="header-nav">
<a href="" class="header-nav-link">Meet Karma</a>
<a href="" class="header-nav-link">How It works</a>
<a href="" class="header-nav-link">Store</a>
<a href="" class="header-nav-link">Blog</a>
<a href="" class="header-nav-link">Help</a>
<a href="" class="header-nav-link">Login</a>
</nav>
</header>
<form action="/action_page.php">
<fieldset>
<h2 id="mobile-heading">Order Your Karma Wifi Device Today!</h2>
<br>
<br>
<br>
<div>
<label for="first-name">First Name*</label><br><br>
<input type="text" id="first-name" name="first-name"><br><br>
<label for="last-name">Last Name*</label><br><br>
<input type="text" id="last-name" name="last-name"><br><br>
<label for="address">Address*</label><br><br>
<input type="text" id="address" name="address"><br><br>
<label for="address2">Address 2</label><br><br>
<input type="text" id="address2" name="address2"><br><br>
<label for="city">City</label><br><br>
<input type="city" id="city" name="city"><br><br>
<label for="postcode">Postcode</label><br><br>
<input type="postcode" id="postcode" name="postcode"><br><br>
</fieldset>
</div>
<div>
<fieldset>
<legend>Select a Colour</legend>
<input id="colour1" type="radio" name="colour1" value="orange" />
<label for="colour1">Karma Orange</label>
<input id="colour2" type="radio" name="colour2" value="grey" checked />
<label for="colour2">Space Grey</label>
<br><br><br><br>
</fieldset>
</div>
<input type="image" class="mobile-img" img src="https://c.pxhere.com/photos/aa/f6/photo-1393211.jpg!d" alt="Woman at Desk" class="photo" />
<input id="agreement" type="checkbox" name="agreement" />
<label for="agreement">By placing your order you agree to Karma's terms and conditions</label>
<br>
<br>
<button>Place my Order</button>
</fieldset>
</form>
<footer class="footer">
<p class="mobile-footer">Join us on</p>
<div class="social-media-buttons">
<a href="#"><img src="img/twitter-icon.svg" alt="twitter icon" class="footer-link" /></a>
<a href="#"><img src="img/facebook-icon.svg" alt="facebook icon" class="footer-link" /></a>
<a href="#"><img src="img/instagram-icon.svg" alt="instagram icon" class="footer-link" /></a>
</div>
<span class="span"> © Karma Mobility, Inc.</span>
</footer>
</main>
</html>