-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.html
48 lines (43 loc) · 1.58 KB
/
menu.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="resources/favicon.ico">
<link rel="stylesheet" href="css/menu.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="js/index.js"></script>
<title>GRUB & SCRUB</title>
</head>
<body>
<div id="navbar"></div>
<div class="container-1">
<img src="resources/grubandscrublogo.jpg" class="GSLogo" alt="GSLogo">
<div class="menu-title">
<h2>Menu</h2>
<h3>Now with online ordering!</h3>
<button class="about-button" onclick="location.href='https://order.tbdine.com/pickup/41295'" type="button">Order Online</button>
</div>
</div>
<section id="sandwiches" class="menu-section">
<div class = section-title>
<img src="resources/menu.jpg" width="100%">
<img src="resources/menu2.jpg" width="100%">
<img src="resources/kids menu.jpg" width="100%">
<img src="resources/Breakfast.jpg" width="60%">
</div>
</section>
<div id="footer"></div>
<!-- JQUERY -->
<script
src="https://code.jquery.com/jquery-3.6.0.js"
integrity="sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk="
crossorigin="anonymous"></script>
<script>
$(function() {
$("#footer").load('footer.html');
$("#navbar").load('navbar.html');
});
</script>
</body>
</html>