├── .vscode └── settings.json ├── about.html ├── assets ├── css │ └── style.css ├── fonts │ ├── Heebo │ │ ├── Heebo-VariableFont_wght.ttf │ │ ├── OFL.txt │ │ ├── README.txt │ │ └── static │ │ │ ├── Heebo-Black.ttf │ │ │ ├── Heebo-Bold.ttf │ │ │ ├── Heebo-ExtraBold.ttf │ │ │ ├── Heebo-ExtraLight.ttf │ │ │ ├── Heebo-Light.ttf │ │ │ ├── Heebo-Medium.ttf │ │ │ ├── Heebo-Regular.ttf │ │ │ ├── Heebo-SemiBold.ttf │ │ │ └── Heebo-Thin.ttf │ ├── Nunito │ │ ├── Nunito-Italic-VariableFont_wght.ttf │ │ ├── Nunito-VariableFont_wght.ttf │ │ ├── OFL.txt │ │ ├── README.txt │ │ └── static │ │ │ ├── Nunito-Black.ttf │ │ │ ├── Nunito-BlackItalic.ttf │ │ │ ├── Nunito-Bold.ttf │ │ │ ├── Nunito-BoldItalic.ttf │ │ │ ├── Nunito-ExtraBold.ttf │ │ │ ├── Nunito-ExtraBoldItalic.ttf │ │ │ ├── Nunito-ExtraLight.ttf │ │ │ ├── Nunito-ExtraLightItalic.ttf │ │ │ ├── Nunito-Italic.ttf │ │ │ ├── Nunito-Light.ttf │ │ │ ├── Nunito-LightItalic.ttf │ │ │ ├── Nunito-Medium.ttf │ │ │ ├── Nunito-MediumItalic.ttf │ │ │ ├── Nunito-Regular.ttf │ │ │ ├── Nunito-SemiBold.ttf │ │ │ └── Nunito-SemiBoldItalic.ttf │ └── Pacifico │ │ ├── OFL.txt │ │ └── Pacifico-Regular.ttf ├── images │ ├── ab_team_01.png │ ├── about-1.jpg │ ├── about-2.jpg │ ├── about-3.jpg │ ├── about-4.jpg │ ├── about-bg.jpg │ ├── about-testi-bg.jpg │ ├── banner-img.png │ ├── banner.jpg │ ├── bg1_0.jpg │ ├── blog-grid-1-1.jpg │ ├── blog-grid-1-2.jpg │ ├── blog-grid-1.jpg │ ├── breakfast-icon.svg │ ├── counter-1.png │ ├── counter-2.png │ ├── counter-3.png │ ├── counter-4.png │ ├── event-01.jpg │ ├── event-02.jpg │ ├── feature-box-bg-2.jpg │ ├── feature-box-bg-3.jpg │ ├── feature-box-bg.jpg │ ├── featured-box-bg-1.jpg │ ├── find-a-table.png │ ├── footer-bg.jpg │ ├── ft-res-bg.jpg │ ├── gallery-1.jpg │ ├── gallery-2.jpg │ ├── gallery-3.jpg │ ├── gallery-4.jpg │ ├── gallery-5.jpg │ ├── gallery-6.jpg │ ├── menu-slider-dessert.png │ ├── menu-slider-dinner.png │ ├── menu-slider-lunch.png │ ├── pagetitle-contact.jpg │ ├── pagetitle-menu.jpg │ ├── pagetitle-reservation.jpg │ ├── partner-01.png │ ├── partner-02.png │ ├── partner-03.png │ ├── partner-04.png │ ├── product-2a.jpg │ ├── product-2b.jpg │ ├── product-2c.jpg │ ├── product-2d.jpg │ ├── product-decorate.jpg │ ├── reservation-bg.jpg │ ├── reservation-services-bg.jpg │ ├── reservation-showcase.png │ ├── subscribe-us.png │ ├── team-1.png │ ├── team-2.png │ ├── team-3.png │ ├── team-4.png │ ├── template-screenshot.png │ ├── testi-1.jpg │ ├── testi-2.jpg │ ├── testi-3.jpg │ ├── testi-4.jpg │ ├── testi-bg.jpg │ ├── testi-signal.png │ ├── timeline-1.jpg │ ├── timeline-2.jpg │ ├── timeline-3.jpg │ ├── timeline-4.jpg │ ├── timeline-5.jpg │ ├── timeline-6.jpg │ ├── vegetable_01.png │ └── vegetable_02.png └── js │ └── script.js ├── contact.html ├── index.html ├── menu.html ├── readme.md └── reservation.html /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5501 3 | } -------------------------------------------------------------------------------- /about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/about.html -------------------------------------------------------------------------------- /assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/css/style.css -------------------------------------------------------------------------------- /assets/fonts/Heebo/Heebo-VariableFont_wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/fonts/Heebo/Heebo-VariableFont_wght.ttf -------------------------------------------------------------------------------- /assets/fonts/Heebo/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/fonts/Heebo/OFL.txt -------------------------------------------------------------------------------- /assets/fonts/Heebo/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/fonts/Heebo/README.txt -------------------------------------------------------------------------------- /assets/fonts/Heebo/static/Heebo-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/fonts/Heebo/static/Heebo-Black.ttf -------------------------------------------------------------------------------- /assets/fonts/Heebo/static/Heebo-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/fonts/Heebo/static/Heebo-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/Heebo/static/Heebo-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/fonts/Heebo/static/Heebo-ExtraBold.ttf -------------------------------------------------------------------------------- /assets/fonts/Heebo/static/Heebo-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/fonts/Heebo/static/Heebo-ExtraLight.ttf -------------------------------------------------------------------------------- /assets/fonts/Heebo/static/Heebo-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/fonts/Heebo/static/Heebo-Light.ttf -------------------------------------------------------------------------------- /assets/fonts/Heebo/static/Heebo-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/fonts/Heebo/static/Heebo-Medium.ttf -------------------------------------------------------------------------------- /assets/fonts/Heebo/static/Heebo-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/fonts/Heebo/static/Heebo-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/Heebo/static/Heebo-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/fonts/Heebo/static/Heebo-SemiBold.ttf -------------------------------------------------------------------------------- /assets/fonts/Heebo/static/Heebo-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/fonts/Heebo/static/Heebo-Thin.ttf -------------------------------------------------------------------------------- /assets/fonts/Nunito/Nunito-Italic-VariableFont_wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/fonts/Nunito/Nunito-Italic-VariableFont_wght.ttf -------------------------------------------------------------------------------- /assets/fonts/Nunito/Nunito-VariableFont_wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/fonts/Nunito/Nunito-VariableFont_wght.ttf -------------------------------------------------------------------------------- /assets/fonts/Nunito/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/fonts/Nunito/OFL.txt -------------------------------------------------------------------------------- /assets/fonts/Nunito/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/fonts/Nunito/README.txt -------------------------------------------------------------------------------- /assets/fonts/Nunito/static/Nunito-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/fonts/Nunito/static/Nunito-Black.ttf -------------------------------------------------------------------------------- /assets/fonts/Nunito/static/Nunito-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/fonts/Nunito/static/Nunito-BlackItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Nunito/static/Nunito-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/fonts/Nunito/static/Nunito-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/Nunito/static/Nunito-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/fonts/Nunito/static/Nunito-BoldItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Nunito/static/Nunito-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/fonts/Nunito/static/Nunito-ExtraBold.ttf -------------------------------------------------------------------------------- /assets/fonts/Nunito/static/Nunito-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/fonts/Nunito/static/Nunito-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Nunito/static/Nunito-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/fonts/Nunito/static/Nunito-ExtraLight.ttf -------------------------------------------------------------------------------- /assets/fonts/Nunito/static/Nunito-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/fonts/Nunito/static/Nunito-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Nunito/static/Nunito-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/fonts/Nunito/static/Nunito-Italic.ttf -------------------------------------------------------------------------------- /assets/fonts/Nunito/static/Nunito-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/fonts/Nunito/static/Nunito-Light.ttf -------------------------------------------------------------------------------- /assets/fonts/Nunito/static/Nunito-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/fonts/Nunito/static/Nunito-LightItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Nunito/static/Nunito-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/fonts/Nunito/static/Nunito-Medium.ttf -------------------------------------------------------------------------------- /assets/fonts/Nunito/static/Nunito-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/fonts/Nunito/static/Nunito-MediumItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Nunito/static/Nunito-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/fonts/Nunito/static/Nunito-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/Nunito/static/Nunito-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/fonts/Nunito/static/Nunito-SemiBold.ttf -------------------------------------------------------------------------------- /assets/fonts/Nunito/static/Nunito-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/fonts/Nunito/static/Nunito-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Pacifico/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/fonts/Pacifico/OFL.txt -------------------------------------------------------------------------------- /assets/fonts/Pacifico/Pacifico-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/fonts/Pacifico/Pacifico-Regular.ttf -------------------------------------------------------------------------------- /assets/images/ab_team_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/ab_team_01.png -------------------------------------------------------------------------------- /assets/images/about-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/about-1.jpg -------------------------------------------------------------------------------- /assets/images/about-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/about-2.jpg -------------------------------------------------------------------------------- /assets/images/about-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/about-3.jpg -------------------------------------------------------------------------------- /assets/images/about-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/about-4.jpg -------------------------------------------------------------------------------- /assets/images/about-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/about-bg.jpg -------------------------------------------------------------------------------- /assets/images/about-testi-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/about-testi-bg.jpg -------------------------------------------------------------------------------- /assets/images/banner-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/banner-img.png -------------------------------------------------------------------------------- /assets/images/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/banner.jpg -------------------------------------------------------------------------------- /assets/images/bg1_0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/bg1_0.jpg -------------------------------------------------------------------------------- /assets/images/blog-grid-1-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/blog-grid-1-1.jpg -------------------------------------------------------------------------------- /assets/images/blog-grid-1-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/blog-grid-1-2.jpg -------------------------------------------------------------------------------- /assets/images/blog-grid-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/blog-grid-1.jpg -------------------------------------------------------------------------------- /assets/images/breakfast-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/breakfast-icon.svg -------------------------------------------------------------------------------- /assets/images/counter-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/counter-1.png -------------------------------------------------------------------------------- /assets/images/counter-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/counter-2.png -------------------------------------------------------------------------------- /assets/images/counter-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/counter-3.png -------------------------------------------------------------------------------- /assets/images/counter-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/counter-4.png -------------------------------------------------------------------------------- /assets/images/event-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/event-01.jpg -------------------------------------------------------------------------------- /assets/images/event-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/event-02.jpg -------------------------------------------------------------------------------- /assets/images/feature-box-bg-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/feature-box-bg-2.jpg -------------------------------------------------------------------------------- /assets/images/feature-box-bg-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/feature-box-bg-3.jpg -------------------------------------------------------------------------------- /assets/images/feature-box-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/feature-box-bg.jpg -------------------------------------------------------------------------------- /assets/images/featured-box-bg-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/featured-box-bg-1.jpg -------------------------------------------------------------------------------- /assets/images/find-a-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/find-a-table.png -------------------------------------------------------------------------------- /assets/images/footer-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/footer-bg.jpg -------------------------------------------------------------------------------- /assets/images/ft-res-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/ft-res-bg.jpg -------------------------------------------------------------------------------- /assets/images/gallery-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/gallery-1.jpg -------------------------------------------------------------------------------- /assets/images/gallery-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/gallery-2.jpg -------------------------------------------------------------------------------- /assets/images/gallery-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/gallery-3.jpg -------------------------------------------------------------------------------- /assets/images/gallery-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/gallery-4.jpg -------------------------------------------------------------------------------- /assets/images/gallery-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/gallery-5.jpg -------------------------------------------------------------------------------- /assets/images/gallery-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/gallery-6.jpg -------------------------------------------------------------------------------- /assets/images/menu-slider-dessert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/menu-slider-dessert.png -------------------------------------------------------------------------------- /assets/images/menu-slider-dinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/menu-slider-dinner.png -------------------------------------------------------------------------------- /assets/images/menu-slider-lunch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/menu-slider-lunch.png -------------------------------------------------------------------------------- /assets/images/pagetitle-contact.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/pagetitle-contact.jpg -------------------------------------------------------------------------------- /assets/images/pagetitle-menu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/pagetitle-menu.jpg -------------------------------------------------------------------------------- /assets/images/pagetitle-reservation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/pagetitle-reservation.jpg -------------------------------------------------------------------------------- /assets/images/partner-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/partner-01.png -------------------------------------------------------------------------------- /assets/images/partner-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/partner-02.png -------------------------------------------------------------------------------- /assets/images/partner-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/partner-03.png -------------------------------------------------------------------------------- /assets/images/partner-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/partner-04.png -------------------------------------------------------------------------------- /assets/images/product-2a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/product-2a.jpg -------------------------------------------------------------------------------- /assets/images/product-2b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/product-2b.jpg -------------------------------------------------------------------------------- /assets/images/product-2c.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/product-2c.jpg -------------------------------------------------------------------------------- /assets/images/product-2d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/product-2d.jpg -------------------------------------------------------------------------------- /assets/images/product-decorate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/product-decorate.jpg -------------------------------------------------------------------------------- /assets/images/reservation-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/reservation-bg.jpg -------------------------------------------------------------------------------- /assets/images/reservation-services-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/reservation-services-bg.jpg -------------------------------------------------------------------------------- /assets/images/reservation-showcase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/reservation-showcase.png -------------------------------------------------------------------------------- /assets/images/subscribe-us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/subscribe-us.png -------------------------------------------------------------------------------- /assets/images/team-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/team-1.png -------------------------------------------------------------------------------- /assets/images/team-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/team-2.png -------------------------------------------------------------------------------- /assets/images/team-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/team-3.png -------------------------------------------------------------------------------- /assets/images/team-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/team-4.png -------------------------------------------------------------------------------- /assets/images/template-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/template-screenshot.png -------------------------------------------------------------------------------- /assets/images/testi-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/testi-1.jpg -------------------------------------------------------------------------------- /assets/images/testi-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/testi-2.jpg -------------------------------------------------------------------------------- /assets/images/testi-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/testi-3.jpg -------------------------------------------------------------------------------- /assets/images/testi-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/testi-4.jpg -------------------------------------------------------------------------------- /assets/images/testi-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/testi-bg.jpg -------------------------------------------------------------------------------- /assets/images/testi-signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/testi-signal.png -------------------------------------------------------------------------------- /assets/images/timeline-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/timeline-1.jpg -------------------------------------------------------------------------------- /assets/images/timeline-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/timeline-2.jpg -------------------------------------------------------------------------------- /assets/images/timeline-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/timeline-3.jpg -------------------------------------------------------------------------------- /assets/images/timeline-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/timeline-4.jpg -------------------------------------------------------------------------------- /assets/images/timeline-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/timeline-5.jpg -------------------------------------------------------------------------------- /assets/images/timeline-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/timeline-6.jpg -------------------------------------------------------------------------------- /assets/images/vegetable_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/vegetable_01.png -------------------------------------------------------------------------------- /assets/images/vegetable_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/images/vegetable_02.png -------------------------------------------------------------------------------- /assets/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/assets/js/script.js -------------------------------------------------------------------------------- /contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/contact.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/index.html -------------------------------------------------------------------------------- /menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/menu.html -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/readme.md -------------------------------------------------------------------------------- /reservation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithshabbir/Restoran/HEAD/reservation.html --------------------------------------------------------------------------------