-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfavourites.html
More file actions
76 lines (69 loc) · 2.23 KB
/
favourites.html
File metadata and controls
76 lines (69 loc) · 2.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/x-icon" href="./assets/favicon-meal.jpg" />
<!-- Font Awesome Icons -->
<script
src="https://kit.fontawesome.com/0a9b7b3b75.js"
crossorigin="anonymous"
></script>
<!-- Bootstrap CSS -->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-iYQeCzEYFbKjA/T2uDLTpkwGzCiq6soy8tYaI1GyVh/UjpbCx/TYkiZhlZB6+fzT"
crossorigin="anonymous"
/>
<!-- External CSS -->
<link rel="stylesheet" href="./src/styles/index.css" />
<link rel="stylesheet" href="./src/styles/favourites.css">
<title>Favourites</title>
</head>
<body>
<!-- Header Section -->
<header class="header-container">
<!-- Navbar Section -->
<navbar class="nav-container">
<img id="meal-logo" src="https://meal-icedq5izn-kartiksarwan2017.vercel.app/assets/meal-logo.webp" alt="meal-logo" />
<h1 id="heading">Kitchen's Meal</h1>
</navbar>
<!-- Navbar Links -->
<div class="nav-links">
<li>
<a href="/index.html">Home</a>
</li>
<li>
<a href="/">Favourite Meals</a>
</li>
<li>
<a href="/about.html">About</a>
</li>
</div>
</header>
<main>
<!-- Favourite Meals Section -->
<div class="fav-meals-container">
<h2>Favourite Meals</h2>
<div class="fav-meals">
</div>
</div>
</div>
<!-- Display the Details of the Meals -->
<div class="pop-up-container">
<div class="pop-up">
<i class="fa-solid fa-x"></i>
<div class="pop-up-inner"></div>
</div>
</main>
<footer></footer>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-u1OknCvxWvY5kfmNBILK2hRnQC3Pr17a+RTT6rIHI7NnikvbZlHgTPOOmMi466C8"
crossorigin="anonymous"
></script>
<script src="src/pages/favourites.js"></script>
</body>
</html>