-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
87 lines (85 loc) · 2.92 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
<!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" />
<!-- bootstrap -->
<link rel="stylesheet" href="css/bootstrap.min.css" />
<!-- font awesome -->
<link rel="stylesheet" href="css/all.min.css" />
<!-- main css file -->
<link rel="stylesheet" href="css/main.css" />
<title>Yummy</title>
</head>
<body class="bg-black" onload="SearchByName('a')">
<!-- side nav -->
<div class="side-nav position-fixed top-0 d-flex">
<div
class="nave-body bg-black p-4 d-flex flex-column justify-content-between"
>
<div class="tabs">
<ul class="list-unstyled text-decoration-none overflow-hidden">
<li class="py-2 position-relative text-white cursor-pointer">
Search
</li>
<li class="py-2 position-relative text-white cursor-pointer">
Categories
</li>
<li class="py-2 position-relative text-white cursor-pointer">
Area
</li>
<li class="py-2 position-relative text-white cursor-pointer">
Ingredients
</li>
<li class="py-2 position-relative text-white cursor-pointer">
Contact Us
</li>
</ul>
</div>
<div class="nav-footer text-white">
<div class="icons">
<a class="text-white" href="#"
><i class="fa-brands fa-facebook"></i
></a>
<a class="text-white" href="#"
><i class="fa-brands fa-twitter"></i
></a>
<a class="text-white" href="#"
><i class="fa-solid fa-globe p-1"></i
></a>
</div>
<p>Copyright © 2019 All Rights Reserved.</p>
</div>
</div>
<div
class="nav-header d-flex flex-column bg-white vh-100 nav-head align-items-center justify-content-between py-4"
>
<div class="logo w-75">
<img class="w-100" src="imgs/logo.png" alt="" srcset="" />
</div>
<div class="menu-open-close">
<a class="text-black fs-2" href="#"
><i class="fa-solid fa-bars"></i>
</a>
</div>
<div class="footer-icon d-flex flex-column">
<a class="text-black" href="#"
><i class="fa-solid fa-globe p-1 fs-5"></i
></a>
<a class="text-black" href="#">
<i class="fa-solid fa-share-nodes p-1 fs-5"></i
></a>
</div>
</div>
</div>
<!-- page content -->
<div class="container">
<div class="search mb-5 mt-4"></div>
<div class="main-content mb-5 min-vh-100"></div>
</div>
<script src="js/Jquery.js"></script>
<script src="js/bootstrap.bundle.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>