-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsitemap.html
More file actions
137 lines (116 loc) · 4.36 KB
/
Copy pathsitemap.html
File metadata and controls
137 lines (116 loc) · 4.36 KB
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="icon" type="image/png" href="logo image.png">
<title>Sitemap | Local Eats</title>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm"
crossorigin="anonymous"/>
</head>
<body>
<!-- Navbar -->
<nav class="navigation">
<div class="left-nav">
<ul>
<li><span class="trolley">🛒</span></li>
<li><span class="local">Local</span><span class="eats">Eats</span></li>
</ul>
</div>
<div class="right-nav">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about-us.html">About</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="staff.html">Staff</a></li>
<li><a href="services.html">Services</a></li>
</ul>
</div>
</nav>
<!-- Sitemap Content -->
<main class="container mt-5 mb-5">
<h1 class="mb-4">Website Sitemap</h1>
<p>This sitemap provides a complete list of accessible pages on the Local Eats website. Use it to quickly find and explore different sections of the site.</p>
<ul class="list-group list-group-flush mt-4">
<li class="list-group-item"><a href="index.html">Home</a></li>
<li class="list-group-item"><a href="about-us.html">About Us</a></li>
<li class="list-group-item"><a href="gallery.html">Gallery</a></li>
<li class="list-group-item"><a href="contact.html">Contact</a></li>
<li class="list-group-item"><a href="resturants.html">Restaurant Listings</a></li>
<li class="list-group-item"><a href="vendor.html">Food Vendors</a></li>
<li class="list-group-item"><a href="privacy policy.html">Privacy Policy</a></li>
<li class="list-group-item"><a href="Terms of services.html">Terms of Service</a></li>
</ul>
</main>
<footer>
<!-- coding for footer -->
<footer>
<div class="first-footer">
<div class="text1"> <p> Stay Upadated with Local Food News</p></div>
<div class="text2"><p>Suscribe to our newsletter for the latest restaurants openings, special events, and
exclusive offers</p></div>
<form>
<input type="email" id="email" name="email">
<button type="button" class="btn btn-primary">Subscribe</button>
</form>
</div>
<div class="second-footer">
<div class="column1">
<div class="footer-heading1">Local Eats</div>
<ul>
<li>Discover the best local dining experiences in your city</li>
<li>
<img src="images-for-footer/facebook.png" alt="Facebook" style="cursor:pointer;"
onclick="window.open('https://www.facebook.com', '_blank')">
</li>
<li>
<img src="images-for-footer/twitter.png" alt="Twitter" style="cursor:pointer;"
onclick="window.open('https://www.twitter.com', '_blank')">
</li>
</ul>
</div>
<div class="column2">
<div class="footer-heading2">Quick Links</div>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about-us.html">About Us</a></li>
<li><a href="resturants.html">Restaurants</a></li>
<li><a href="vendor.html">Food Vendors</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="jobs.html">Jobs</a></li>
</ul>
</div>
<div class="column3">
<div class="footer-heading3">Resources</div>
<ul>
<li><a href="review.html">Reviews</a></li>
<li><a href="booking.html">Schedule a Visit</a></li>
<li><a href="refremce.html">References</a></li>
</ul>
</div>
<div class="column4">
<div class="footer-heading4">Contact Us</div>
<ul>
<li>📍123 Hersion Street, Sydney</li>
<li>📞 02 1234 5678</li>
<li>✉️ infolocaleats@gmail.com</li>
<li><button type="button" class="btn btn-primary mt-2">Contact Us</button></li>
</ul>
</div>
</div>
<!-- coding for third footer -->
<div class="third-footer">
<div class="left-third-footer">
© Local Eats. All rights reserved
</div>
<div class="right-third-footer">
<a href="privacy policy.html">Privacy Policy</a>
<a href="Terms of services.html">Terms of Services</a>
<a href="sitemap.html">Sitemap</a>
</div>
</div>
</footer>
</body>
</html>