├── .gitignore ├── README.md ├── _config.yml ├── css └── style.css ├── fonts ├── OFL.txt ├── Raleway-Black.ttf ├── Raleway-BlackItalic.ttf ├── Raleway-Bold.ttf ├── Raleway-BoldItalic.ttf ├── Raleway-ExtraBold.ttf ├── Raleway-ExtraBoldItalic.ttf ├── Raleway-ExtraLight.ttf ├── Raleway-ExtraLightItalic.ttf ├── Raleway-Italic.ttf ├── Raleway-Light.ttf ├── Raleway-LightItalic.ttf ├── Raleway-Medium.ttf ├── Raleway-MediumItalic.ttf ├── Raleway-Regular.ttf ├── Raleway-SemiBold.ttf ├── Raleway-SemiBoldItalic.ttf ├── Raleway-Thin.ttf └── Raleway-ThinItalic.ttf ├── icons ├── bag-2.svg ├── bag.svg ├── cart-2.svg ├── cart-dark.svg ├── cart.svg ├── clock-2.svg ├── clock.svg ├── edit.svg ├── email.svg ├── facebook.svg ├── google.svg ├── hr.svg ├── instagram.svg ├── location.svg ├── logo-2.svg ├── logo.svg ├── next.svg ├── phone-2.svg ├── phone.svg ├── pre.svg ├── search.svg ├── shadow-sm.svg ├── shadow.svg ├── star-grey.svg ├── start-filled.svg ├── transport.svg ├── twitter.svg ├── usd.svg └── user-icon.svg ├── images ├── coffee.jpg ├── cupcake.png ├── donut-transparent.png ├── donut.jpg ├── food-table.jpg ├── hero.png ├── jars.jpg ├── plate-1.png ├── plate-2.png ├── plate-3.png ├── rasberry.png ├── salad-table.jpg ├── straw.png ├── vegies.png └── yogurt.png ├── index.html ├── js └── app.js └── restaurant-webpage.jpg /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/_config.yml -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/css/style.css -------------------------------------------------------------------------------- /fonts/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/fonts/OFL.txt -------------------------------------------------------------------------------- /fonts/Raleway-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/fonts/Raleway-Black.ttf -------------------------------------------------------------------------------- /fonts/Raleway-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/fonts/Raleway-BlackItalic.ttf -------------------------------------------------------------------------------- /fonts/Raleway-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/fonts/Raleway-Bold.ttf -------------------------------------------------------------------------------- /fonts/Raleway-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/fonts/Raleway-BoldItalic.ttf -------------------------------------------------------------------------------- /fonts/Raleway-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/fonts/Raleway-ExtraBold.ttf -------------------------------------------------------------------------------- /fonts/Raleway-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/fonts/Raleway-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /fonts/Raleway-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/fonts/Raleway-ExtraLight.ttf -------------------------------------------------------------------------------- /fonts/Raleway-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/fonts/Raleway-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /fonts/Raleway-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/fonts/Raleway-Italic.ttf -------------------------------------------------------------------------------- /fonts/Raleway-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/fonts/Raleway-Light.ttf -------------------------------------------------------------------------------- /fonts/Raleway-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/fonts/Raleway-LightItalic.ttf -------------------------------------------------------------------------------- /fonts/Raleway-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/fonts/Raleway-Medium.ttf -------------------------------------------------------------------------------- /fonts/Raleway-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/fonts/Raleway-MediumItalic.ttf -------------------------------------------------------------------------------- /fonts/Raleway-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/fonts/Raleway-Regular.ttf -------------------------------------------------------------------------------- /fonts/Raleway-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/fonts/Raleway-SemiBold.ttf -------------------------------------------------------------------------------- /fonts/Raleway-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/fonts/Raleway-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /fonts/Raleway-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/fonts/Raleway-Thin.ttf -------------------------------------------------------------------------------- /fonts/Raleway-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/fonts/Raleway-ThinItalic.ttf -------------------------------------------------------------------------------- /icons/bag-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/icons/bag-2.svg -------------------------------------------------------------------------------- /icons/bag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/icons/bag.svg -------------------------------------------------------------------------------- /icons/cart-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/icons/cart-2.svg -------------------------------------------------------------------------------- /icons/cart-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/icons/cart-dark.svg -------------------------------------------------------------------------------- /icons/cart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/icons/cart.svg -------------------------------------------------------------------------------- /icons/clock-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/icons/clock-2.svg -------------------------------------------------------------------------------- /icons/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/icons/clock.svg -------------------------------------------------------------------------------- /icons/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/icons/edit.svg -------------------------------------------------------------------------------- /icons/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/icons/email.svg -------------------------------------------------------------------------------- /icons/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/icons/facebook.svg -------------------------------------------------------------------------------- /icons/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/icons/google.svg -------------------------------------------------------------------------------- /icons/hr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/icons/hr.svg -------------------------------------------------------------------------------- /icons/instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/icons/instagram.svg -------------------------------------------------------------------------------- /icons/location.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/icons/location.svg -------------------------------------------------------------------------------- /icons/logo-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/icons/logo-2.svg -------------------------------------------------------------------------------- /icons/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/icons/logo.svg -------------------------------------------------------------------------------- /icons/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/icons/next.svg -------------------------------------------------------------------------------- /icons/phone-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/icons/phone-2.svg -------------------------------------------------------------------------------- /icons/phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/icons/phone.svg -------------------------------------------------------------------------------- /icons/pre.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/icons/pre.svg -------------------------------------------------------------------------------- /icons/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/icons/search.svg -------------------------------------------------------------------------------- /icons/shadow-sm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/icons/shadow-sm.svg -------------------------------------------------------------------------------- /icons/shadow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/icons/shadow.svg -------------------------------------------------------------------------------- /icons/star-grey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/icons/star-grey.svg -------------------------------------------------------------------------------- /icons/start-filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/icons/start-filled.svg -------------------------------------------------------------------------------- /icons/transport.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/icons/transport.svg -------------------------------------------------------------------------------- /icons/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/icons/twitter.svg -------------------------------------------------------------------------------- /icons/usd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/icons/usd.svg -------------------------------------------------------------------------------- /icons/user-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/icons/user-icon.svg -------------------------------------------------------------------------------- /images/coffee.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/images/coffee.jpg -------------------------------------------------------------------------------- /images/cupcake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/images/cupcake.png -------------------------------------------------------------------------------- /images/donut-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/images/donut-transparent.png -------------------------------------------------------------------------------- /images/donut.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/images/donut.jpg -------------------------------------------------------------------------------- /images/food-table.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/images/food-table.jpg -------------------------------------------------------------------------------- /images/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/images/hero.png -------------------------------------------------------------------------------- /images/jars.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/images/jars.jpg -------------------------------------------------------------------------------- /images/plate-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/images/plate-1.png -------------------------------------------------------------------------------- /images/plate-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/images/plate-2.png -------------------------------------------------------------------------------- /images/plate-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/images/plate-3.png -------------------------------------------------------------------------------- /images/rasberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/images/rasberry.png -------------------------------------------------------------------------------- /images/salad-table.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/images/salad-table.jpg -------------------------------------------------------------------------------- /images/straw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/images/straw.png -------------------------------------------------------------------------------- /images/vegies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/images/vegies.png -------------------------------------------------------------------------------- /images/yogurt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/images/yogurt.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/index.html -------------------------------------------------------------------------------- /js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/js/app.js -------------------------------------------------------------------------------- /restaurant-webpage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codersgyan/Responsive-restaurant-website/HEAD/restaurant-webpage.jpg --------------------------------------------------------------------------------