├── assets ├── css │ ├── bootstrap.min.css │ ├── jquery.fancybox.min.css │ └── swiper-bundle.min.css ├── images │ ├── about.jpg │ ├── berry.png │ ├── blog-pattern-bg.png │ ├── blog │ │ ├── blog1.jpg │ │ ├── blog2.jpg │ │ └── blog3.jpg │ ├── brands │ │ ├── b1.png │ │ ├── b2.png │ │ ├── b3.png │ │ ├── b4.png │ │ └── b5.png │ ├── bt1.jpg │ ├── bt2.jpg │ ├── bt3.jpg │ ├── bt4.jpg │ ├── chef │ │ ├── c1.jpg │ │ ├── c2.jpg │ │ ├── c3.jpg │ │ ├── c4.jpg │ │ └── c5.jpg │ ├── dish │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ └── 6.png │ ├── faq-bg.png │ ├── leaf.png │ ├── loader.gif │ ├── main-b.jpg │ ├── mashroom.png │ ├── menu-1.png │ ├── menu-2.png │ ├── menu-3.png │ ├── menu-4.png │ ├── menu-bg.png │ ├── news.jpg │ ├── pizza.png │ ├── sushi.png │ ├── table-leaves-shape.png │ ├── testimonial-img.png │ ├── testimonials │ │ ├── t1.jpg │ │ ├── t2.jpg │ │ ├── t3.jpg │ │ └── t4.jpg │ ├── title-shape.svg │ └── video.mp4 └── js │ ├── ScrollToPlugin.min.js │ ├── ScrollTrigger.min.js │ ├── bootstrap.min.js │ ├── font-awesome.min.js │ ├── gsap.min.js │ ├── jquery-3.5.1.min.js │ ├── jquery.fancybox.min.js │ ├── jquery.mixitup.min.js │ ├── parallax.min.js │ ├── popper.min.js │ ├── smooth-scroll.js │ └── swiper-bundle.min.js ├── index.html ├── logo.png ├── main.js └── style.css /assets/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/css/bootstrap.min.css -------------------------------------------------------------------------------- /assets/css/jquery.fancybox.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/css/jquery.fancybox.min.css -------------------------------------------------------------------------------- /assets/css/swiper-bundle.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/css/swiper-bundle.min.css -------------------------------------------------------------------------------- /assets/images/about.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/images/about.jpg -------------------------------------------------------------------------------- /assets/images/berry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/images/berry.png -------------------------------------------------------------------------------- /assets/images/blog-pattern-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/images/blog-pattern-bg.png -------------------------------------------------------------------------------- /assets/images/blog/blog1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/images/blog/blog1.jpg -------------------------------------------------------------------------------- /assets/images/blog/blog2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/images/blog/blog2.jpg -------------------------------------------------------------------------------- /assets/images/blog/blog3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/images/blog/blog3.jpg -------------------------------------------------------------------------------- /assets/images/brands/b1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/images/brands/b1.png -------------------------------------------------------------------------------- /assets/images/brands/b2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/images/brands/b2.png -------------------------------------------------------------------------------- /assets/images/brands/b3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/images/brands/b3.png -------------------------------------------------------------------------------- /assets/images/brands/b4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/images/brands/b4.png -------------------------------------------------------------------------------- /assets/images/brands/b5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/images/brands/b5.png -------------------------------------------------------------------------------- /assets/images/bt1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/images/bt1.jpg -------------------------------------------------------------------------------- /assets/images/bt2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/images/bt2.jpg -------------------------------------------------------------------------------- /assets/images/bt3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/images/bt3.jpg -------------------------------------------------------------------------------- /assets/images/bt4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/images/bt4.jpg -------------------------------------------------------------------------------- /assets/images/chef/c1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/images/chef/c1.jpg -------------------------------------------------------------------------------- /assets/images/chef/c2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/images/chef/c2.jpg -------------------------------------------------------------------------------- /assets/images/chef/c3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/images/chef/c3.jpg -------------------------------------------------------------------------------- /assets/images/chef/c4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/images/chef/c4.jpg -------------------------------------------------------------------------------- /assets/images/chef/c5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/images/chef/c5.jpg -------------------------------------------------------------------------------- /assets/images/dish/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/images/dish/1.png -------------------------------------------------------------------------------- /assets/images/dish/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/images/dish/2.png -------------------------------------------------------------------------------- /assets/images/dish/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/images/dish/3.png -------------------------------------------------------------------------------- /assets/images/dish/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/images/dish/4.png -------------------------------------------------------------------------------- /assets/images/dish/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/images/dish/5.png -------------------------------------------------------------------------------- /assets/images/dish/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/images/dish/6.png -------------------------------------------------------------------------------- /assets/images/faq-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/images/faq-bg.png -------------------------------------------------------------------------------- /assets/images/leaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/images/leaf.png -------------------------------------------------------------------------------- /assets/images/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/images/loader.gif -------------------------------------------------------------------------------- /assets/images/main-b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/images/main-b.jpg -------------------------------------------------------------------------------- /assets/images/mashroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/images/mashroom.png -------------------------------------------------------------------------------- /assets/images/menu-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/images/menu-1.png -------------------------------------------------------------------------------- /assets/images/menu-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/images/menu-2.png -------------------------------------------------------------------------------- /assets/images/menu-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/images/menu-3.png -------------------------------------------------------------------------------- /assets/images/menu-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/images/menu-4.png -------------------------------------------------------------------------------- /assets/images/menu-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/images/menu-bg.png -------------------------------------------------------------------------------- /assets/images/news.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/images/news.jpg -------------------------------------------------------------------------------- /assets/images/pizza.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/images/pizza.png -------------------------------------------------------------------------------- /assets/images/sushi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/images/sushi.png -------------------------------------------------------------------------------- /assets/images/table-leaves-shape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/images/table-leaves-shape.png -------------------------------------------------------------------------------- /assets/images/testimonial-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/images/testimonial-img.png -------------------------------------------------------------------------------- /assets/images/testimonials/t1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/images/testimonials/t1.jpg -------------------------------------------------------------------------------- /assets/images/testimonials/t2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/images/testimonials/t2.jpg -------------------------------------------------------------------------------- /assets/images/testimonials/t3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/images/testimonials/t3.jpg -------------------------------------------------------------------------------- /assets/images/testimonials/t4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/images/testimonials/t4.jpg -------------------------------------------------------------------------------- /assets/images/title-shape.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/images/title-shape.svg -------------------------------------------------------------------------------- /assets/images/video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/images/video.mp4 -------------------------------------------------------------------------------- /assets/js/ScrollToPlugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/js/ScrollToPlugin.min.js -------------------------------------------------------------------------------- /assets/js/ScrollTrigger.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/js/ScrollTrigger.min.js -------------------------------------------------------------------------------- /assets/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/js/bootstrap.min.js -------------------------------------------------------------------------------- /assets/js/font-awesome.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/js/font-awesome.min.js -------------------------------------------------------------------------------- /assets/js/gsap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/js/gsap.min.js -------------------------------------------------------------------------------- /assets/js/jquery-3.5.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/js/jquery-3.5.1.min.js -------------------------------------------------------------------------------- /assets/js/jquery.fancybox.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/js/jquery.fancybox.min.js -------------------------------------------------------------------------------- /assets/js/jquery.mixitup.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/js/jquery.mixitup.min.js -------------------------------------------------------------------------------- /assets/js/parallax.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/js/parallax.min.js -------------------------------------------------------------------------------- /assets/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/js/popper.min.js -------------------------------------------------------------------------------- /assets/js/smooth-scroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/js/smooth-scroll.js -------------------------------------------------------------------------------- /assets/js/swiper-bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/assets/js/swiper-bundle.min.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/index.html -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/logo.png -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/main.js -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiecoder2079/food-website/HEAD/style.css --------------------------------------------------------------------------------