-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresponse.html
53 lines (41 loc) · 2.01 KB
/
response.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="author" content="Dustin Busmer" />
<meta name="keywords" content="Prep List, hospitality, kitchenware, kitchen, utensils" />
<meta name="description" content="Response page for the kitchenware store Prep List" />
<link href="styles.css" rel="stylesheet" />
<link rel="icon" href="images/chef-logo.png" type="image/ico" />
<title>Response</title>
</head>
<body>
<!--Skeleton response page to show summary of order submitted.-->
<h1 id="top" class="pageHeader">Prep List</h1>
<nav>
<ul class="navBar">
<li><a href="index.html">Home</a></li>
<li><a href="products.html">Products</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="purchase.html">Purchase</a></li>
<li><a href="sitemap.html">Sitemap</a></li>
</ul>
</nav>
<main>
<p class="mainP">Here is a summary of your order:</p>
<p class="mainP" id="summary"></p>
<p class="mainP">Thankyou for your purchase. <br />If you have any further queries please email us at <a href="mailto:[email protected]" target="_top">[email protected]</a></p> <!--Opens an email box-->
<script src="response.js"></script>
</main>
<footer>
<p>
<span class="copyright">Copyright © 2020 Prep List. All rights reserved.</span>
<a class="topLink" href="#top">Top</a>
<span class="badges"> <!--HTML CSS validation links-->
<a href="https://validator.w3.org/#validate_by_input"><img src="images/200px-HTML5_logo_and_wordmark.png" alt="HTML5 validation" height="50" width="50" /></a>
<a href="https://jigsaw.w3.org/css-validator/#validate_by_input"><img src="images/CSS3_logo_and_wordmark.svg(1).png" alt="CSS validation" height="50" width="35" /></a>
</span>
</p>
</footer>
</body>
</html>