-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcart.html
117 lines (117 loc) · 3.97 KB
/
cart.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html>
<head>
<link rel="icon" href="images/ico.svg" />
<meta charset="utf-8" />
<title>Fake Meat Butcher Store</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="style.css" />
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" rel="stylesheet" />
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css2?family=Anton&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="font-awesome-4.7.0/css/font-awesome.css" />
<script src="products.js"></script>
<script src="script.js"></script>
<script src="cart.js"></script>
</head>
<body>
<header>
<img src="images/logo.svg" alt="My store logo" />
<h1 id="name">Fake Meat Butcher</h1>
</header>
<nav>
<ul>
<li>
<a href="./index.html" id="home"><i class="material-icons">home</i></a>
</li>
<li>
<a href="./cart.html" class="iconNav"><i class="material-icons">shopping_cart</i></a>
</li>
<li class="menu_signUp desktop"><a href="./contact.html" class="iconNav">Contact Us</a></li>
<li class="menu_signUp mobile">
<a href="./contact.html" class="iconNav"><i class="material-icons">email</i></a>
</li>
</ul>
</nav>
<main class="mainOther">
<div class="cart">
<h2>Shopping Cart</h2>
<p id="cartIsEmpty">
No items yet :( <br />
<br />Yes, it works. You may add items.
</p>
<table id="cartTable">
<thead>
<tr id="cartTHeader">
<th>Code</th>
<th>Name</th>
<th>Qtd</th>
<th>Price</th>
<th>Total</th>
</tr>
</thead>
<tbody id="tBody"></tbody>
<tfoot id="tFoot"></tfoot>
</table>
<p id="cartButtons">
<button id="checkout">Checkout</button><button id="clearCart">Clear Cart</button>
</p>
</div>
</main>
<footer>
<ul>
<li>
<a href="./signup.html" class="iconNav"
><i class="material-icons md-18 icon">person_add</i></a
>
</li>
<li class="desktop"><a id="footerText" href="./about.html">About</a></li>
<li class="mobile">
<a href="./about.html"><span class="material-icons icon md-18">help_outline</span></a>
</li>
<li>
<a href="https://www.twitter.com/fakemeatbutcher"
><i class="fa fa-twitter icon" aria-hidden="true"></i
></a>
</li>
<li>
<a href="https://www.instagram.com/fakemeatbutcher"
><i class="fa fa-instagram icon" aria-hidden="true"></i
></a>
</li>
<li>
<a href="https://www.facebook.com/fakemeatbutcher"
><i class="fa fa-facebook-square icon" aria-hidden="true"></i
></a>
</li>
<li class="desktop">
<form action="https://formspree.io/xbjzwwjn" method="POST" class="subscribeForm">
<input
type="email"
name="_replyto"
placeholder="Email to subscribe"
class="subscribeField"
/>
<input type="submit" value="Subscribe" class="subscribeButton" />
</form>
</li>
<li class="mobile">
<form action="https://formspree.io/xbjzwwjn" method="POST" class="subscribeForm">
<input
type="email"
name="_replyto"
placeholder="Email to subscribe"
class="subscribeField"
required
/>
<button type="submit" value="Subscribe" class="subscribeButton">
<span class="material-icons md-18">
mark_email_read
</span>
</button>
</form>
</li>
</ul>
</footer>
</body>
</html>