-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
114 lines (67 loc) · 3.03 KB
/
index.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
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
<!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">
<title>Yummy</title>
<link rel="stylesheet" href="./node_modules/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="./node_modules/@fortawesome/fontawesome-free/css/all.min.css">
<link rel="stylesheet" href="./node_modules/aos/dist/aos.css">
<link rel="stylesheet" href="./Css/style.css">
</head>
<body class="bg-black">
<div class="loading bg-black position-fixed top-0 start-0 end-0 bottom-0 text-white d-none justify-content-center align-items-center"
id="loader">
<i class="fa fa-spinner fa-spin fa-5x"></i>
</div>
<div class="sidBar text-white d-flex">
<div class="leftSidBar d-flex flex-column justify-content-between vh-100 w-75">
<div class="links p-3 overflow-hidden">
<ul class="text-white list-unstyled ">
<li class="py-2" id="searchLink">Search</li>
<li class="py-2" id="categorylink">Categories</li>
<li class="py-2" id="areaLink">Area</li>
<li class="py-2" id="ingredientsLink">Ingredients</li>
<li class="py-2" id="contactlink">Contact Us</li>
</ul>
</div>
<div class="leftSidBarFooter ">
<div class="icons p-3">
<i class=" fa fa-brands fa-facebook text-white"></i>
<i class=" fa fa-brands fa-twitter text-white"></i>
<i class=" fa fa-solid fa-globe text-white"></i>
<p class="mb-0">Copyright © 2019 All Rights </p>
Reserved.
</div>
<div class="footer p-3">
</div>
</div>
</div>
<div class="rightSidBar bg-white text-center d-flex flex-column justify-content-between w-25 text-black py-3">
<figure>
<img class="w-50" src="./Images/logo.png" alt="">
</figure>
<i class="fa-solid open-close-icon fa-x fa-2x" id="closeSideBar"></i>
<div class="rightIcons d-flex flex-column py-3">
<i class=" fa fa-solid fa-globe mb-2"></i>
<i class="fa-solid fa-share-nodes"></i>
</div>
</div>
</div>
<section id="homeMeals">
<div class="container">
<div class="row p-5 g-4 text-white" id="rowSearch">
</div>
</div>
<div class="container">
<div class=" row p-5 g-4 text-white" id="rowHomeMeals">
</div>
</div>
</section>
<script src="./node_modules/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
<script src="./node_modules/jquery/dist/jquery.min.js"></script>
<script src="./node_modules/aos/dist/aos.js"></script>
<script src="./Js/index.js" type="module"></script>
</body>
</html>