-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.html
39 lines (30 loc) · 1.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Casserole Co</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<link rel="stylesheet" href="./styles/styles.css">
<link rel="stylesheet" href="./styles/menu.css">
<link rel="stylesheet" href="./styles/navbar.css">
<link rel="stylesheet" href="./styles/footer.css">
<link rel="stylesheet" href="./styles/search.css">
<link rel="stylesheet" href="./styles/sort.css">
<link rel="stylesheet" href="./styles/pagination.css">
<link href="https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<div class="main-container">
<div id="navbar-container">
<div class="navbar">
</div>
</div>
<div class="content">
<div id="app">
</div>
</div>
<div id="footer-div">
</div>
</div>
<script src="./scripts/main.js" type="module"></script>
</body>
</html>