forked from Grace2102/192-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathniftythrifty-order.html
103 lines (95 loc) · 4.15 KB
/
niftythrifty-order.html
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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="utf-8">
<meta name="description" content="Nifty Thrifty offers quality food from our online food outlet store. Providing nutritional and affordable produce to people of low socioeconomic classes as well as to reduce food wastage">
<meta name="keywords" content="Afforable, Outlet, Food, Environment, Shopping">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="style.css">
<title>Nifty Thrifty</title>
</head>
<body>
<nav>
<div class="navbar">
<span class="title"><b>Nifty Thrifty</b></span>
<a class="link_buttons" href="niftythrifty-order.html"><i class="fa fa-shopping-cart"></i></a>
<a class="link_buttons" href="niftythrifty.html"><i class="fa fa-fw fa-home"></i></a>
</div>
</nav>
<section>
<h1>Your Order</h1>
<article>
<h2>Cart</h2>
<div class="cart">
<div class="item">
<img class="cart-img" src="images/pasta.jpg" alt="Pasta"/>
<p class="cart-desc">Pasta<br>$2.00</p>
<p class="quantity">x 2</p>
</div>
<div class="item">
<img class="cart-img" src="images/shapes.jpg" alt="Shapes"/>
<p class="cart-desc">Shapes<br>$2.00</p>
<p class="quantity">x 1</p>
</div>
<div class="item">
<img class="cart-img" src="images/milo.jpg" alt="Milo"/>
<p class="cart-desc">Milo<br>$4.90</p>
<p class="quantity">x 2</p>
</div>
</div>
<p class="total">Total: $10.90</p>
<br><br>
</article>
<article>
<h2>Your Details</h2>
<div class="details">
<form>
<label for="name">Name: </label><input type="text" id="name" name="name"><br><br>
<label for="address">Address: </label><input type="text" id="address" name="address"><br><br>
<label for="bankcardno">Bank Card No.: </label><input type="text" id="bankcardno" name="bankcardno"><br><br>
<label for="email">Email: </label><input type="email" id="email" name="email"><br><br>
<input class="submit" type="submit" onclick="newcustomerdetails()">
</form>
</div>
</article>
</section>
<br><br>
<!---FOOTER--->
<footer>
<div class="footer">
<table class="footer-table">
<tr>
<td><h3>Photo Credits</h3></td>
<td><h3>Contact Us</h3></td>
</tr>
<tr>
<td>
<ul>
<li><a href="https://www.flickr.com/">Flickr</a></li>
<li><a href="https://pixabay.com/">Pixabay</a></li>
<li><a href="https://www.pxfuel.com/">Pxfuel</a></li>
<li><a href="https://world.openfoodfacts.org/">World Open Food Facts</a></li>
</ul>
</td>
<td>
<table class="contact-table">
<tr>
<td>Phone:</td>
<td>999-999-9999</td>
</tr>
<tr>
<td>Email:</td>
<td><a href="https://mail.google.com/" target="_blank">niftythrifty@gmail.com</a></td>
</tr>
<tr>
<td>FaceBook:</td>
<td><a href="https://www.facebook.com/">https://www.facebook.com/</a></td>
</tr>
</table>
</td>
</tr>
</table>
</div>
</footer>
</body>
</html>