-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsitemap.html
69 lines (55 loc) · 2.62 KB
/
sitemap.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
<!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="Sitemap for the kitchenware store Prep List" />
<link href="styles.css" rel="stylesheet" />
<link rel="icon" href="images/chef-logo.png" type="image/ico" />
<title>Sitemap</title>
</head>
<body>
<!--Page with links to all other pages and sub-sections-->
<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 class="active">Sitemap</a></li>
</ul>
</nav>
<main>
<ul id="sitemapMain" class="mainP">
<li><a href="index.html">Home</a></li>
<li class="accordion">☰ Products</li><!--Sub list-->
<li class="panel">
<a href="products.html#productList">→ Product list</a><br />
<a href="products.html#specials">→ Specials</a><br />
<a href="products.html#hospoDeals">→ Hospo Deals</a><br />
</li>
<li class="accordion">☰ About Us</li><!--Sub list-->
<li class="panel">
<a href="about.html#history">→ History</a><br />
<a href="about.html#location">→ Location</a><br />
<a href="about.html#personnel">→ Personnel</a><br />
</li>
<li><a href="purchase.html">Purchase</a></li>
<li><a href="sitemap.html">Sitemap</a></li>
</ul>
</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>
<script src="sitemap.js"></script>
</body>
</html>