-
Notifications
You must be signed in to change notification settings - Fork 0
/
cart.html
54 lines (46 loc) · 1.42 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
<!DOCTYPE html>
<html>
<head>
<title>Flip Stitch Pillow</title>
<script
src="https://code.jquery.com/jquery-2.2.4.min.js"
integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44="
crossorigin="anonymous"></script>
<script type="text/javascript" src="js/cart.js"></script>
<link rel="stylesheet" type="text/css" href="css/general.css">
<link rel="stylesheet" type="text/css" href="css/type.css">
<link rel="stylesheet" type="text/css" href="css/cart.css">
<link href="https://fonts.googleapis.com/css?family=Lato:300" rel="stylesheet">
</head>
<body>
<div class="button-holder">
<a id="close" href="javascript:history.back()">
<img src="assets/close.svg" />
</a>
</div>
<main class="content">
<h1>Your shopping cart.</h1>
<div id="divisor"></div>
<p>
Please review your item below, and leave your contact information.
We will contact you within the next three business days.
</p>
<section>
<table id="items">
<th>
<td>type</td><td>shape</td><td>quantity</td><td>comment</td><td></td>
</th>
</table>
</section>
<section>
<p>Your name:</p>
<input type="text" name="yourName" /><br />
<p>Your email:</p>
<input type="email" name="yourEmail" required="yes" /><br />
<p>Any comments:</p>
<textarea cols="80" rows="20"></textarea>
<a class="bordered-button" id="getQuote" href="#" onclick="getQuote();">get a quote!</a>
</section>
</main>
</body>
</html>