diff --git a/restaraunt website/restraunt website/about.css b/restaraunt website/restraunt website/about.css new file mode 100644 index 0000000..150ce35 --- /dev/null +++ b/restaraunt website/restraunt website/about.css @@ -0,0 +1,80 @@ +/* Our Story Styles */ +.ourStory__wrapper { + display: flex; + flex-direction: column; + gap: 2rem; +} +.ourStory__title, +.ourGoals__title { + font-size: 1.8rem; + font-weight: 600; + color: var(--black-1); + margin-bottom: 1rem; +} +.ourStory__subtitle { + font-size: 1.4rem; + font-weight: 600; + color: var(--black-1); + margin-bottom: 2rem; +} +.ourStory__text, +.ourGoals__text { + font-size: 1.4rem; + line-height: 1.4em; + color: var(--black-2); +} +@media only screen and (min-width: 768px) { + .ourStory__wrapper { + flex-direction: row; + gap: 3rem; + } + .ourStory__img, + .ourStory__info { + flex: 1; + } + .ourStory__title, + .ourGoals__title { + font-size: 3.6rem; + } + .ourStory__subtitle { + font-size: 1.8rem; + } + .ourStory__text, + .ourGoals__text { + font-size: 1.8rem; + max-width: 800px; + } +} + +/* Our Goals Styles */ + +.ourGoals__info { + text-align: left; + margin-bottom: 5rem; +} +.ourGoals__imgs__wrapper img { + object-fit: cover; +} +.ourGoals__imgs__wrapper { + max-width: 800px; + margin: 0 auto; + display: grid; + grid-template-columns: 1fr 1fr; + grid-template-rows: 1fr 1fr; + grid-row: auto; + gap: 1rem; +} +.ourGoals__img1 { + grid-row: 1/3; +} +@media only screen and (min-width: 768px) { + .ourGoals__info { + text-align: center; + } + .ourGoals__imgs__wrapper { + gap: 2rem; + } + .ourGoals__text { + margin: 0 auto; + } +} diff --git a/restaraunt website/restraunt website/about.html b/restaraunt website/restraunt website/about.html new file mode 100644 index 0000000..1feabaa --- /dev/null +++ b/restaraunt website/restraunt website/about.html @@ -0,0 +1,241 @@ + + + + + + + + + About | Sonali's Cuisine + + + + + + + + + + + + + +
+
+
+ +
+ Sonali's cuisine +
+
+

+ Our Story +

+

+ It's all started since 1998 +

+

+ Welcome to Sonali's Cuisine. We take pride in delivering warm, friendly service and creating mouth-watering + culinary delights for all. Using only the freshest locally sourced ingredients, we’ll ensure you have a + dining + experience to remember. +

+ Since 1998, we are the perfect place for a romantic meal for two, a catch-up with friends, family parties, + business meetings, and bringing loved ones together. With comfortable surroundings, affordable prices, and + seating for up to 65 guests, we can cater for all occasions. +

+
+
+
+
+ + +
+
+
+

+ Our Goals +

+

+ We shall sell delicious and remarkable food and beverages that meet the highest quality, freshness, and + seasonality criteria while combining modern-creative and classic cooking traditions. By showcasing warmth, + graciousness, efficiency, skill, professionalism, and integrity in our work, we will continually serve our + consumers with exceptional service. To have every customer who comes through our doors leave impressed by + their experience at Sonali's Cuisine and excited to come back again. +

+
+
+
+ kitchen img +
+
+ kitchen img +
+
+ kitchen img +
+
+
+
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/restaraunt website/restraunt website/booking.html b/restaraunt website/restraunt website/booking.html new file mode 100644 index 0000000..e2adacc --- /dev/null +++ b/restaraunt website/restraunt website/booking.html @@ -0,0 +1,239 @@ + + + + + + + + + Booking | Sonali's Cuisine + + + + + + + + + + + + +
+
+

Book Table

+
+
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+ +
+
+
+
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/restaraunt website/restraunt website/components.css b/restaraunt website/restraunt website/components.css new file mode 100644 index 0000000..f0e33da --- /dev/null +++ b/restaraunt website/restraunt website/components.css @@ -0,0 +1,410 @@ +/* Nav Styles */ +.nav { + padding: 2rem 0; +} +.nav__icon, +.nav__close, +.nav__bgOverlay { + display: none; +} +.nav__wrapper { + display: flex; + justify-content: space-between; +} +.nav__list li { + display: inline-block; + margin: 0 1rem; +} +.nav__list .nav__link { + font-size: 1.8rem; + font-family: Poppins; + color: var(--black-2); + padding: 0.5rem; +} +.nav__list li:hover .nav__link { + color: var(--green-1); +} +@media only screen and (max-width: 768px) { + .nav { + position: relative; + /* overflow-x: scroll; */ + } + .nav__icon { + display: block; + } + .nav__icon svg, + .nav__close svg { + pointer-events: none; + height: 30px; + width: 30px; + } + .nav__close { + display: block; + position: absolute; + color: var(--black-1); + right: 1rem; + top: 1rem; + cursor: pointer; + } + .nav__list { + z-index: 1000; + position: absolute; + left: 100%; + top: 0; + height: 100vh; + width: 80%; + background: var(--lightGreen-1); + display: flex; + align-items: center; + justify-content: flex-end; + padding-right: 2rem; + transform: translate(0%); + overflow: hidden; + transition: 0.3s ease-in transform; + } + .nav__list.show { + transform: translate(-100%); + } + .nav__list li { + display: block; + text-align: right; + margin-bottom: 2rem; + } + .nav__list a { + font-size: 1.6rem; + } + .nav__bgOverlay { + position: absolute; + left: 0; + top: 0; + z-index: 1000; + height: 100vh; + width: 100%; + background: rgba(18, 24, 14, 0.808); + display: none; + } + .nav__bgOverlay.active { + display: block; + } +} +/* End Nav Styles */ +/* Global Button Styles */ +.btn { + color: var(--green-1); + font-family: Poppins; + font-weight: 500; + border-radius: 8px; + font-size: 1.4rem; + padding: 1.2rem 2rem; +} +.primary-btn { + color: var(--white-1); + background: var(--green-1); +} +@media only screen and (min-width: 700px) { + .btn { + padding: 1.3rem 2rem; + font-size: 2rem; + } +} +/* End Global Button Styles */ + +/* Store info section styles*/ +.storeInfo__wrapper { + display: flex; + justify-content: center; + flex-wrap: wrap; + gap: 1rem; +} +.storeInfo__item { + background-color: var(--lightGreen-1); + padding: 20px 30px; + text-align: center; + text-align: center; + border-radius: 12px; + width: 150px; +} +.storeInfo__icon { + width: 30px; + margin: 0 auto; + margin-bottom: 1.5rem; +} +.storeInfo__title { + font-size: 1.4rem; + font-family: Poppins; + font-weight: 500; + margin-bottom: 0.5rem; + color: var(--black-1); +} +.storeInfo__text { + font-size: 1.4rem; + font-family: Raleway; + color: var(--black-2); +} +@media only screen and (min-width: 768px) { + .storeInfo__wrapper { + gap: 2rem; + } + .storeInfo__item { + min-width: 200px; + padding: 40px 0; + } + .storeInfo__icon { + width: 47px; + margin-bottom: 2.5rem; + } + .storeInfo__title { + font-size: 1.8rem; + margin-bottom: 1rem; + } + .storeInfo__text { + font-size: 1.6rem; + } +} + +/* Dishes Grid */ +.dishGrid__title { + font-size: 1.8rem; + margin-bottom: 2rem; + font-weight: 600; + color: var(--black-1); +} +.dishGrid__wrapper { + display: grid; + /* grid-template-columns: repeat(autofit, minmax(140px, 1fr)); */ + grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); + gap: 1rem; +} +.dishGrid__item { + display: flex; + flex-direction: column; + background-color: var(--lightGreen-1); + padding: 0.5rem; + border-radius: 8px; + gap: 0.5rem; +} +.dishGrid__item__img { + flex: 4; +} +.dishGrid__item__info { + flex: 5; +} +.dishGrid__item__img img { + object-fit: cover; + border-radius: 12px; +} +.dishGrid__item__title { + font-size: 1.4rem; + line-height: 1.3em; + font-weight: 500; + color: var(--black-1); + margin-bottom: 0.5rem; +} +.dishGrid__item__price { + font-size: 1.4rem; + color: var(--green-1); + font-weight: 600; + margin-bottom: 0.5rem; +} +.dishGrid__item__stars { + max-height: 15px; + width: max-content; +} +@media only screen and (min-width: 768px) { + .dishGrid__title { + font-size: 2.4rem; + } + .dishGrid__wrapper { + grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); + gap: 3rem; + } + .dishGrid__item { + flex-direction: row; + padding: 1.5rem; + border-radius: 12px; + gap: 1rem; + } + .dishGrid__item__title { + font-size: 2.4rem; + margin-bottom: 1rem; + } + .dishGrid__item__price { + font-size: 2rem; + margin-bottom: 1rem; + } +} +/* Dishes Grid */ + +/* Footer Styles */ +footer { + background: var(--lightGreen-1); + padding-top: 5rem; + padding-bottom: 2rem; +} +.footer__wrapper { + display: flex; + flex-direction: column; + gap: 3rem; +} +.footer__logo { + width: 150px; + margin-bottom: 2rem; +} +.footer__desc { + font-size: 1.4rem; + color: var(--black-2); + margin-bottom: 2rem; +} +.footer__socials__title { + font-size: 1.8rem; + color: var(--black-1); + margin-bottom: 1rem; +} +.footer__socials li { + display: inline-block; + margin-right: 0.5rem; +} +.footer__socials a { + padding: 0.5rem 0.8rem; + background-color: var(--white-1); + border: 1px solid var(--green-2); + border-radius: 8px; +} +.footer__socials svg { + width: 20px; + color: var(--black-2); +} +.footer__text__title { + font-size: 1.8rem; + margin-bottom: 1rem; + color: var(--black-1); + font-weight: 600; +} +.footer__text a { + font-size: 1.4rem; + margin-bottom: 0.5rem; + color: var(--black-2); + font-family: Raleway; + font-weight: 500; + line-height: 1.4em; +} +@media only screen and (min-width: 768px) { + footer { + padding-top: 8rem; + padding-bottom: 4rem; + } + .footer__wrapper { + flex-direction: row; + } + .footer__col1 { + flex: 4; + } + .footer__col2, + .footer__col3, + .footer__col4 { + flex: 2; + } + .footer__desc { + max-width: 300px; + font-size: 1.8rem; + margin-bottom: 2.5rem; + } + .footer__socials__title { + font-size: 2rem; + margin-bottom: 1.5rem; + } + .footer__text__title { + font-size: 2rem; + margin-bottom: 2rem; + } + .footer__text a { + font-size: 1.8rem; + margin-bottom: 1rem; + } +} +#copyright { + padding: 1rem 0; +} +.copyright__text { + font-size: 1.4rem; + text-align: center; +} +@media only screen and (min-width: 768px) { + .copyright__text { + font-size: 1.6rem; + text-align: left; + } +} +/* End Footer Styles */ + +/* Form Styles */ +#form { + padding: 5rem 0; +} +.form__title { + font-size: 1.8rem; + color: var(--black-1); + font-weight: 600; +} +.form__wrapper { + padding: 3rem 0; +} +.form__wrapper form { + display: grid; + grid-template-columns: 1fr; + gap: 2rem; +} +.form__group label { + font-size: 1.6rem; + font-family: Poppins; + color: var(--black-2); + font-weight: 500; +} +.form__group input, +.form__group textarea, +.form__group select { + width: 100%; + border: none; + background-color: var(--lightGreen-1); + font-size: 1.4rem; + font-family: Raleway; + font-weight: 600; + padding: 1.5rem; + border-radius: 8px; + margin-top: 0.5rem; + color: var(--black-2); +} +.form__group textarea { + resize: vertical; +} +.form__wrapper button[type='submit'] { + width: max-content; + border: none; + padding: 1rem 4rem; + font-weight: 500; + letter-spacing: 0.1rem; +} +@media only screen and (min-width: 768px) { + .form__title { + font-size: 3.6rem; + } + .form__wrapper { + padding: 5rem 0; + } + .form__wrapper form { + grid-template-columns: 1fr 1fr; + } + .form__group__full { + grid-column: 1/3; + } + .form__group label { + font-size: 1.8rem; + } + .form__group input, + .form__group textarea, + .form__group select { + font-size: 1.8rem; + padding: 2rem; + margin-top: 1.5rem; + } +} diff --git a/restaraunt website/restraunt website/contact.html b/restaraunt website/restraunt website/contact.html new file mode 100644 index 0000000..e7297ae --- /dev/null +++ b/restaraunt website/restraunt website/contact.html @@ -0,0 +1,258 @@ + + + + + + + + + Contact | Sonali's Cuisine + + + + + + + + + + + + + +
+
+
+
+
+ clock icon +
+

+ 10 AM - 7 PM +

+

+ Opening Hour +

+
+
+
+ clock icon +
+

+ GEC, Chittagong +

+

+ Address +

+
+
+
+ clock icon +
+

+ +880123443 +

+

+ Call Now +

+
+
+
+
+ + +
+
+

+ Contact & Inquiry +

+
+
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+ +
+
+
+
+ + + + + + + + + + + + + + \ No newline at end of file diff --git a/restaraunt website/restraunt website/globalStyles.css b/restaraunt website/restraunt website/globalStyles.css new file mode 100644 index 0000000..bbbbe03 --- /dev/null +++ b/restaraunt website/restraunt website/globalStyles.css @@ -0,0 +1,54 @@ +@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600&family=Raleway:wght@400;500;600&display=swap'); +html { + font-size: 10px; + overflow-x: hidden; +} +body { + background: var(--lightGreen-2); + overflow-x: hidden; + visibility: hidden; +} +section { + padding: 100px 0; +} +@media only screen and (max-width: 767px) { + section { + padding: 50px 0; + } +} +.container { + max-width: 1200px; + width: 90%; + margin: 0 auto; +} +:root { + --green-1:#395B64; + --green-2: #A5C9CA; + --lightGreen-1:#A5C9CA; + --lightGreen-2: #E7F6F2; + --black-1: #09321b; + --black-2: #003928; + --black-3: #926E6F; + --white-1: #e8e8e8; +} +img { + width: 100%; + height: 100%; + object-fit: contain; +} +h1, +h2, +h3, +h4 { + font-family: Poppins; +} +p { + font-family: Raleway; + font-weight: 400; + line-height: 1.4em; + font-size: 1.8rem; +} +a { + display: inline-block; + text-decoration: none; +} diff --git a/restaraunt website/restraunt website/home.css b/restaraunt website/restraunt website/home.css new file mode 100644 index 0000000..03cfef0 --- /dev/null +++ b/restaraunt website/restraunt website/home.css @@ -0,0 +1,648 @@ +/* hero section styles */ +.hero__wrapper { + display: flex; + align-items: center; + justify-content: center; + flex-direction: column-reverse; + gap: 5rem; +} +.hero__left__wrapper { + max-width: 350px; +} +.hero__imgWrapper { + max-width: 400px; + width: 80%; + margin: 0 auto; +} +.hero__heading { + font-family: Poppins; + font-weight: 600; + line-height: 1.4em; + text-align: center; + font-size: 1.8rem; + margin-bottom: 1.5rem; + color: var(--black-1); +} +.hero__info { + text-align: center; + font-size: 1.4rem; + margin-bottom: 1.5rem; + color: var(--black-2); +} +.button__wrapper { + text-align: center; +} + +@media only screen and (min-width: 768px) { + .hero__wrapper { + flex-direction: row; + gap: 0; + } + .hero__left { + flex: 3; + } + .hero__right { + flex: 4; + } + .hero__heading { + font-size: 3.6rem; + margin-bottom: 2rem; + text-align: left; + } + + .hero__info { + margin-bottom: 2rem; + text-align: left; + font-size: 1.8rem; + } + + .button__wrapper { + text-align: left; + } + .hero__imgWrapper { + max-width: none; + width: 90%; + } +} +@media only screen and (max-width: 900px) { + .hero__left, + .hero__right { + flex: 1; + } +} +/* Our Specials Section Styles */ +#ourSpecials { + padding-top: 10rem; +} +.ourSpecials__wrapper { + display: flex; + flex-direction: column; + gap: 3rem; +} +.ourSpecials__left { + display: flex; + gap: 1rem; +} +.ourSpecials__item { + background-color: var(--lightGreen-1); + padding: 1.2rem; + padding-top: 5rem; + border-radius: 12px; + width: 45%; + margin: 0 auto; +} +.ourSpecials__item__img { + margin-top: calc(-50% - 2rem); + margin-bottom: 2rem; + border-radius: 12px; + height: 150px; + overflow: hidden; +} +.ourSpecials__item__img img { + object-fit: cover; +} +.ourSpecials__item__title { + font-size: 1.4rem; + color: var(--black-1); + font-weight: 600; + margin-bottom: 1rem; +} +.ourSpecials__item__price { + color: var(--green-1); + font-size: 1.4rem; + font-weight: 600; + margin-bottom: 1rem; +} +.ourSpecials__item__stars { + height: 1.5rem; + width: max-content; + margin-bottom: 1rem; +} +.ourSpecials__item__text { + font-size: 1.4rem; + color: var(--black-2); + font-weight: 500; +} +.ourSpecials__title { + font-size: 1.8rem; + margin-bottom: 1.5rem; + color: var(--black-1); +} +.ourSpecials__text { + font-size: 1.4rem; + color: var(--black-2); + margin-bottom: 1rem; +} +@media only screen and (min-width: 768px) { + #ourSpecials { + padding-top: 15rem; + } + #ourSpecials .container { + max-width: 900px; + } + .ourSpecials__wrapper { + flex-direction: row; + } + .ourSpecials__right { + flex: 2; + } + .ourSpecials__left { + flex: 4; + gap: 2rem; + } + .ourSpecials__item { + padding: 2rem; + } + .ourSpecials__item__title { + font-size: 2.4rem; + line-height: 1.4em; + margin-bottom: 1.5rem; + } + .ourSpecials__item__price { + font-size: 1.8rem; + margin-bottom: 1rem; + } + .ourSpecials__item__stars { + margin-bottom: 2rem; + } + .ourSpecials__item__text { + font-size: 1.6rem; + } + .ourSpecials__title { + font-size: 3.6rem; + margin-bottom: 1.5rem; + } + .ourSpecials__text { + font-size: 1.8rem; + margin-bottom: 1.5rem; + } +} +@media only screen and (max-width: 300px) { + .ourSpecials__left { + flex-wrap: wrap; + gap: 10rem; + } + .ourSpecials__item { + width: 100%; + } +} +/* Discount Styles */ +.discount__wrapper { + display: flex; + flex-direction: column; + padding: 1.5rem; + border-radius: 12px; + background: var(--lightGreen-1) url(./images/discount-illustration.png) + no-repeat bottom right / 100px; +} +.discount__images { + display: flex; + gap: 1rem; + width: 100%; + margin-bottom: 2rem; +} +.discount__img1 { + flex: 2; +} +.discount__img2 { + flex: 3; +} +.discount__images img { + object-fit: cover; + border-radius: 12px; +} +.discount__text { + font-size: 1.4rem; + font-weight: 900; + color: var(--green-1); + margin-bottom: 0.5rem; +} +.discount__title { + font-size: 1.8rem; + color: var(--black-1); + font-weight: 600; + margin-bottom: 1rem; +} +.discount__price { + font-size: 1.4rem; + font-weight: 600; + display: flex; + gap: 1rem; + margin-bottom: 1rem; +} +.discount__oldPrice { + color: var(--black-2); + text-decoration: line-through; +} +.discount__newPrice { + color: var(--green-1); +} +.discount__stars { + width: max-content; + height: 15px; + margin-bottom: 1rem; +} +@media only screen and (min-width: 768px) { + .discount__wrapper { + flex-direction: row; + gap: 4rem; + padding: 2rem; + align-items: center; + background-size: 150px; + margin: 0 auto; + } + .discount__images { + flex: 5; + margin-bottom: 0; + gap: 2rem; + } + .discount__img1, + .discount__img2, + .discount__img3 { + flex: 1; + height: 350px; + } + .discount__info { + flex: 3; + } + .discount__text { + font-size: 2.4rem; + } + .discount__title { + font-size: 3.6rem; + margin-bottom: 1.5rem; + } + .discount__price { + font-size: 2.4rem; + } + .discount__stars { + height: 20px; + margin-bottom: 2rem; + } +} +@media only screen and (max-width: 1000px) { + .discount__wrapper { + gap: 2rem; + } + .discount__img3 { + display: none; + } +} +/* End Discount Styles */ +/* EventsMedia Styles */ +.eventsMedia__wrapper { + display: flex; + gap: 1rem; +} +.eventsMedia__1 { + position: relative; +} +.eventsMedia__1__playButton { + display: inline-block; + position: absolute; + left: 50%; + top: 50%; + transform: translate(-50%, -50%); + max-width: 50px; +} +@media only screen and (min-width: 768px) { + .eventsMedia__wrapper { + gap: 2rem; + } + .eventsMedia__1__playButton { + max-width: 100px; + } +} +/* End EventsMedia Styles */ +/* EventsInfo Styles*/ +#eventsInfo { + padding-top: 0; +} +.eventsInfo__wrapper { + display: flex; + flex-direction: column; +} +.eventsInfo__item { + display: flex; + gap: 1rem; + padding: 1rem; + background: var(--lightGreen-1); + margin-bottom: 1.5rem; + border-radius: 12px; +} +.eventsInfo__item__img { + border-radius: 12px; + overflow: hidden; + flex: 3; +} +.eventsInfo__item__info { + flex: 4; +} +.eventsInfo__item__img img { + object-fit: cover; +} +.eventsInfo__item__title { + font-size: 1.4rem; + margin-bottom: 1rem; + color: var(--black-1); +} +.eventsInfo__item__text { + font-size: 1.4rem; + color: var(--black-2); +} +.eventsInfo__right { + margin-top: 2rem; +} +.eventsInfo__title { + font-size: 1.8rem; + color: var(--black-1); + margin-bottom: 1rem; +} +.eventsInfo__text { + color: var(--black-2); + font-size: 1.4rem; + margin-bottom: 1rem; +} +@media only screen and (min-width: 760px) { + .eventsInfo__wrapper { + flex-direction: row; + gap: 2rem; + } + .eventsInfo__left, + .eventsInfo__right { + flex: 1; + } + .eventsInfo__item { + padding: 2rem; + gap: 2rem; + max-width: 500px; + margin-bottom: 2rem; + } + .eventsInfo__item__title { + font-size: 1.8rem; + } + .eventsInfo__item__text { + font-size: 1.6rem; + } + .eventsInfo__title { + font-size: 3.6rem; + } + .eventsInfo__text { + max-width: 500px; + font-size: 1.8rem; + margin-bottom: 2rem; + } +} +/* End EventsInfo Styles*/ +/* WhyUs Section */ +.whyUs__wrapper { + display: flex; + align-items: center; + justify-content: center; + flex-direction: column; + gap: 4rem; +} +.whyUs__left { + text-align: center; +} +.whyUs__title { + font-family: Poppins; + font-size: 1.8rem; + color: var(--black-1); + font-weight: 500; + margin-bottom: 1rem; +} +.whyUs__text { + font-size: 1.4rem; +} +.whyUs__right { + text-align: center; +} +.whyUs__items__wrapper { + display: grid; + grid-template-columns: 1fr 1fr; + gap: 1rem; +} +.whyUs__item { + background: var(--lightGreen-1); + padding: 2rem; + border-radius: 12px; +} +.whyUs__item__icon { + max-width: 56px; + margin: 0 auto; + margin-bottom: 1rem; +} +.whyUs__item__text { + font-family: Poppins; + font-size: 1.4rem; + font-weight: 500; + color: var(--black-1); +} +@media only screen and (min-width: 768px) { + .whyUs__wrapper { + flex-direction: row; + max-width: 900px; + margin: 0 auto; + } + .whyUs__left { + flex: 4; + text-align: left; + } + .whyUs__right { + flex: 3; + } + .whyUs__title { + font-size: 3.6rem; + margin-bottom: 2rem; + } + .whyUs__text { + font-size: 1.8rem; + line-height: 1.4em; + } + .whyUs__items__wrapper { + gap: 1.5rem; + } + .whyUs__item { + padding: 2rem; + } + .whyUs__item__icon { + max-width: 65px; + margin-bottom: 1.5rem; + } + .whyUs__item__text { + font-size: 1.8rem; + } +} + +/* End WhyUs Section */ + +/* Testimonial Section */ +.testimonial__wrapper { + max-width: 400px; + margin: 0 auto; +} +.testimonial__title { + font-size: 1.8rem; + margin-bottom: 3rem; + text-align: center; + color: var(--black-1); +} +.testimonial__items__wrapper { + display: grid; + grid-template-columns: 1fr; + gap: 1rem; +} +.testimonial__item { + padding: 1rem; + display: flex; + gap: 1rem; + background-color: var(--lightGreen-1); + border-radius: 12px; +} +.testimonial__item__info { + flex: 4; +} +.testimonial__item__img { + flex: 2; + border-radius: 12px; + overflow: hidden; + width: 100%; + height: 100%; +} +.testimonial__item__img img { + object-fit: cover; +} +.testimonial__item__name { + font-size: 1.4rem; + font-family: poppins; + margin-bottom: 1rem; +} +.testimonial__item__stars { + max-height: 15px; + width: max-content; + margin-bottom: 1.5rem; +} +.testimonial__item__text { + font-size: 1.4rem; +} +@media only screen and (min-width: 768px) { + .testimonial__wrapper { + max-width: 900px; + } + .testimonial__title { + font-size: 3.6rem; + margin-bottom: 5rem; + } + .testimonial__items__wrapper { + grid-template-columns: 1fr 1fr; + gap: 2rem; + } + .testimonial__item { + padding: 2rem; + } + .testimonial__item__name { + font-size: 1.8rem; + margin-bottom: 1.5rem; + } + .testimonial__item__stars { + margin-bottom: 2rem; + } + .testimonial__item__text { + font-size: 1.6rem; + line-height: 1.4em; + } +} +@media only screen and (max-width: 350px) { + .testimonial__item { + flex-direction: column; + } + .testimonial__item__img, + .testimonial__item__info { + flex: auto; + } +} +/* End Testimonial Section */ + +/* Newsletter Section */ +.newsletter__wrapper { + display: flex; + flex-direction: column; + background-color: var(--green-2); + padding: 1.5rem; + border-radius: 8px; + gap: 2rem; +} +.newsletter__title { + font-size: 1.8rem; + color: var(--black-1); + font-weight: 600; + margin-bottom: 1.3rem; +} +.newsletter__text { + font-size: 1.4rem; + color: var(--black-2); + font-weight: 500; +} +.newsletter__form form { + position: relative; + width: 100%; + border-radius: 8px; + overflow: hidden; +} +.newsletter__form label { + width: 100%; +} +.newsletter__form input { + width: 100%; + font-size: 1.4rem; + padding: 1.5rem 1rem; + border: none; +} +.newsletter__form input::placeholder { + color: rgb(168, 166, 166); +} +.newsletter__form button[type='submit'] { + background-color: var(--green-1); + color: var(--white-1); + border: none; + font-size: 1.4rem; + padding: 0 2rem; + height: 100%; + /* width: 100%; */ + position: absolute; + right: 0; + top: 0; +} +@media only screen and (min-width: 768px) { + .newsletter__wrapper { + flex-direction: row; + padding: 5rem; + align-items: center; + } + .newsletter__info, + .newsletter__form { + flex: 1; + } + .newsletter__title { + font-size: 3.6rem; + margin-bottom: 2rem; + } + .newsletter__text { + font-size: 1.8rem; + max-width: 400px; + } + .newsletter__form { + max-width: 450px; + border-radius: 12px; + } + .newsletter__form input { + font-size: 1.8rem; + padding: 2rem; + } + .newsletter__form button[type='submit'] { + font-size: 1.8rem; + padding: 0 3rem; + } +} +/* End Newsletter Section */ diff --git a/restaraunt website/restraunt website/images/3star.png b/restaraunt website/restraunt website/images/3star.png new file mode 100644 index 0000000..88a9364 Binary files /dev/null and b/restaraunt website/restraunt website/images/3star.png differ diff --git a/restaraunt website/restraunt website/images/address-icon.svg b/restaraunt website/restraunt website/images/address-icon.svg new file mode 100644 index 0000000..cf38f95 --- /dev/null +++ b/restaraunt website/restraunt website/images/address-icon.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/restaraunt website/restraunt website/images/discount-illustration.png b/restaraunt website/restraunt website/images/discount-illustration.png new file mode 100644 index 0000000..1aa0711 Binary files /dev/null and b/restaraunt website/restraunt website/images/discount-illustration.png differ diff --git a/restaraunt website/restraunt website/images/event-corporate.png b/restaraunt website/restraunt website/images/event-corporate.png new file mode 100644 index 0000000..07eb9ec Binary files /dev/null and b/restaraunt website/restraunt website/images/event-corporate.png differ diff --git a/restaraunt website/restraunt website/images/event-weedings.png b/restaraunt website/restraunt website/images/event-weedings.png new file mode 100644 index 0000000..0e7f1ae Binary files /dev/null and b/restaraunt website/restraunt website/images/event-weedings.png differ diff --git a/restaraunt website/restraunt website/images/eventsMedia1.png b/restaraunt website/restraunt website/images/eventsMedia1.png new file mode 100644 index 0000000..76045e4 Binary files /dev/null and b/restaraunt website/restraunt website/images/eventsMedia1.png differ diff --git a/restaraunt website/restraunt website/images/eventsMedia2.png b/restaraunt website/restraunt website/images/eventsMedia2.png new file mode 100644 index 0000000..9533fd6 Binary files /dev/null and b/restaraunt website/restraunt website/images/eventsMedia2.png differ diff --git a/restaraunt website/restraunt website/images/facebook.svg b/restaraunt website/restraunt website/images/facebook.svg new file mode 100644 index 0000000..4ca443e --- /dev/null +++ b/restaraunt website/restraunt website/images/facebook.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/restaraunt website/restraunt website/images/favicon.ico b/restaraunt website/restraunt website/images/favicon.ico new file mode 100644 index 0000000..c24ad22 Binary files /dev/null and b/restaraunt website/restraunt website/images/favicon.ico differ diff --git a/restaraunt website/restraunt website/images/food-1.png b/restaraunt website/restraunt website/images/food-1.png new file mode 100644 index 0000000..a59be93 Binary files /dev/null and b/restaraunt website/restraunt website/images/food-1.png differ diff --git a/restaraunt website/restraunt website/images/food-2.png b/restaraunt website/restraunt website/images/food-2.png new file mode 100644 index 0000000..f9dcfcf Binary files /dev/null and b/restaraunt website/restraunt website/images/food-2.png differ diff --git a/restaraunt website/restraunt website/images/food-3.png b/restaraunt website/restraunt website/images/food-3.png new file mode 100644 index 0000000..06877c1 Binary files /dev/null and b/restaraunt website/restraunt website/images/food-3.png differ diff --git a/restaraunt website/restraunt website/images/food-4.png b/restaraunt website/restraunt website/images/food-4.png new file mode 100644 index 0000000..38902af Binary files /dev/null and b/restaraunt website/restraunt website/images/food-4.png differ diff --git a/restaraunt website/restraunt website/images/food-5.png b/restaraunt website/restraunt website/images/food-5.png new file mode 100644 index 0000000..5a4834e Binary files /dev/null and b/restaraunt website/restraunt website/images/food-5.png differ diff --git a/restaraunt website/restraunt website/images/food-6.png b/restaraunt website/restraunt website/images/food-6.png new file mode 100644 index 0000000..d7ca948 Binary files /dev/null and b/restaraunt website/restraunt website/images/food-6.png differ diff --git a/restaraunt website/restraunt website/images/food-7.png b/restaraunt website/restraunt website/images/food-7.png new file mode 100644 index 0000000..99bbbd7 Binary files /dev/null and b/restaraunt website/restraunt website/images/food-7.png differ diff --git a/restaraunt website/restraunt website/images/heroImg.png b/restaraunt website/restraunt website/images/heroImg.png new file mode 100644 index 0000000..1d9f7c5 Binary files /dev/null and b/restaraunt website/restraunt website/images/heroImg.png differ diff --git a/restaraunt website/restraunt website/images/logo.svg b/restaraunt website/restraunt website/images/logo.svg new file mode 100644 index 0000000..7dfe594 --- /dev/null +++ b/restaraunt website/restraunt website/images/logo.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/restaraunt website/restraunt website/images/ourGoals_img1.png b/restaraunt website/restraunt website/images/ourGoals_img1.png new file mode 100644 index 0000000..7e78dbf Binary files /dev/null and b/restaraunt website/restraunt website/images/ourGoals_img1.png differ diff --git a/restaraunt website/restraunt website/images/ourGoals_img2.png b/restaraunt website/restraunt website/images/ourGoals_img2.png new file mode 100644 index 0000000..17347f3 Binary files /dev/null and b/restaraunt website/restraunt website/images/ourGoals_img2.png differ diff --git a/restaraunt website/restraunt website/images/ourStoryImg.png b/restaraunt website/restraunt website/images/ourStoryImg.png new file mode 100644 index 0000000..c321a85 Binary files /dev/null and b/restaraunt website/restraunt website/images/ourStoryImg.png differ diff --git a/restaraunt website/restraunt website/images/phone-icon.svg b/restaraunt website/restraunt website/images/phone-icon.svg new file mode 100644 index 0000000..658156d --- /dev/null +++ b/restaraunt website/restraunt website/images/phone-icon.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/restaraunt website/restraunt website/images/playIcon.svg b/restaraunt website/restraunt website/images/playIcon.svg new file mode 100644 index 0000000..b315562 --- /dev/null +++ b/restaraunt website/restraunt website/images/playIcon.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/restaraunt website/restraunt website/images/testimonial_img1.png b/restaraunt website/restraunt website/images/testimonial_img1.png new file mode 100644 index 0000000..7c1843d Binary files /dev/null and b/restaraunt website/restraunt website/images/testimonial_img1.png differ diff --git a/restaraunt website/restraunt website/images/wall-clock-icon.svg b/restaraunt website/restraunt website/images/wall-clock-icon.svg new file mode 100644 index 0000000..9bde460 --- /dev/null +++ b/restaraunt website/restraunt website/images/wall-clock-icon.svg @@ -0,0 +1,4 @@ + + + + diff --git a/restaraunt website/restraunt website/images/whyUs-icon1.svg b/restaraunt website/restraunt website/images/whyUs-icon1.svg new file mode 100644 index 0000000..c725289 --- /dev/null +++ b/restaraunt website/restraunt website/images/whyUs-icon1.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/restaraunt website/restraunt website/images/whyUs-icon2.svg b/restaraunt website/restraunt website/images/whyUs-icon2.svg new file mode 100644 index 0000000..faf991c --- /dev/null +++ b/restaraunt website/restraunt website/images/whyUs-icon2.svg @@ -0,0 +1,3 @@ + + + diff --git a/restaraunt website/restraunt website/images/whyUs-icon3.svg b/restaraunt website/restraunt website/images/whyUs-icon3.svg new file mode 100644 index 0000000..e2cf53a --- /dev/null +++ b/restaraunt website/restraunt website/images/whyUs-icon3.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/restaraunt website/restraunt website/images/whyUs-icon4.svg b/restaraunt website/restraunt website/images/whyUs-icon4.svg new file mode 100644 index 0000000..d15ae72 --- /dev/null +++ b/restaraunt website/restraunt website/images/whyUs-icon4.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/restaraunt website/restraunt website/images1/cutlery.png b/restaraunt website/restraunt website/images1/cutlery.png new file mode 100644 index 0000000..ad9a60a Binary files /dev/null and b/restaraunt website/restraunt website/images1/cutlery.png differ diff --git a/restaraunt website/restraunt website/images1/kisspng-chinese-cuisine-red-braised-pork-belly-sichuan-cui-delicious-home-cooking-dishes-image-5a713ea0e0a7d7.9729159215173710409202.png b/restaraunt website/restraunt website/images1/kisspng-chinese-cuisine-red-braised-pork-belly-sichuan-cui-delicious-home-cooking-dishes-image-5a713ea0e0a7d7.9729159215173710409202.png new file mode 100644 index 0000000..74d617d Binary files /dev/null and b/restaraunt website/restraunt website/images1/kisspng-chinese-cuisine-red-braised-pork-belly-sichuan-cui-delicious-home-cooking-dishes-image-5a713ea0e0a7d7.9729159215173710409202.png differ diff --git a/restaraunt website/restraunt website/images1/kisspng-logo-restaurant-food-retro-food-labels-vector-image-5a6a00957cfc89.489852961516896405512.png b/restaraunt website/restraunt website/images1/kisspng-logo-restaurant-food-retro-food-labels-vector-image-5a6a00957cfc89.489852961516896405512.png new file mode 100644 index 0000000..e9b4ef4 Binary files /dev/null and b/restaraunt website/restraunt website/images1/kisspng-logo-restaurant-food-retro-food-labels-vector-image-5a6a00957cfc89.489852961516896405512.png differ diff --git a/restaraunt website/restraunt website/images1/ourGoals_img3.png b/restaraunt website/restraunt website/images1/ourGoals_img3.png new file mode 100644 index 0000000..086a25e Binary files /dev/null and b/restaraunt website/restraunt website/images1/ourGoals_img3.png differ diff --git a/restaraunt website/restraunt website/images1/pexels-chait-goli-7353487.jpg b/restaraunt website/restraunt website/images1/pexels-chait-goli-7353487.jpg new file mode 100644 index 0000000..c307446 Binary files /dev/null and b/restaraunt website/restraunt website/images1/pexels-chait-goli-7353487.jpg differ diff --git a/restaraunt website/restraunt website/images1/pexels-marvin-ozz-2474661.jpg b/restaraunt website/restraunt website/images1/pexels-marvin-ozz-2474661.jpg new file mode 100644 index 0000000..66aa04b Binary files /dev/null and b/restaraunt website/restraunt website/images1/pexels-marvin-ozz-2474661.jpg differ diff --git a/restaraunt website/restraunt website/images1/pexels-pixabay-461198.jpg b/restaraunt website/restraunt website/images1/pexels-pixabay-461198.jpg new file mode 100644 index 0000000..2dc7700 Binary files /dev/null and b/restaraunt website/restraunt website/images1/pexels-pixabay-461198.jpg differ diff --git a/restaraunt website/restraunt website/images1/pexels-sandra-filipe-6183636.jpg b/restaraunt website/restraunt website/images1/pexels-sandra-filipe-6183636.jpg new file mode 100644 index 0000000..0239905 Binary files /dev/null and b/restaraunt website/restraunt website/images1/pexels-sandra-filipe-6183636.jpg differ diff --git a/restaraunt website/restraunt website/images1/pexels-sarthak-4331491.jpg b/restaraunt website/restraunt website/images1/pexels-sarthak-4331491.jpg new file mode 100644 index 0000000..465f999 Binary files /dev/null and b/restaraunt website/restraunt website/images1/pexels-sarthak-4331491.jpg differ diff --git a/restaraunt website/restraunt website/images1/saktheeswaran-govindarajan-yCIcDyKm440-unsplash.jpg b/restaraunt website/restraunt website/images1/saktheeswaran-govindarajan-yCIcDyKm440-unsplash.jpg new file mode 100644 index 0000000..c45f8e5 Binary files /dev/null and b/restaraunt website/restraunt website/images1/saktheeswaran-govindarajan-yCIcDyKm440-unsplash.jpg differ diff --git a/restaraunt website/restraunt website/images1/saundarya-srinivasan-9CFwOcFCcDI-unsplash.jpg b/restaraunt website/restraunt website/images1/saundarya-srinivasan-9CFwOcFCcDI-unsplash.jpg new file mode 100644 index 0000000..9e450f5 Binary files /dev/null and b/restaraunt website/restraunt website/images1/saundarya-srinivasan-9CFwOcFCcDI-unsplash.jpg differ diff --git a/restaraunt website/restraunt website/images1/shreyak-singh-0j4bisyPo3M-unsplash.jpg b/restaraunt website/restraunt website/images1/shreyak-singh-0j4bisyPo3M-unsplash.jpg new file mode 100644 index 0000000..37d90f6 Binary files /dev/null and b/restaraunt website/restraunt website/images1/shreyak-singh-0j4bisyPo3M-unsplash.jpg differ diff --git a/restaraunt website/restraunt website/images1/umesh-soni-g1qlhFbWPKg-unsplash.jpg b/restaraunt website/restraunt website/images1/umesh-soni-g1qlhFbWPKg-unsplash.jpg new file mode 100644 index 0000000..1534aa6 Binary files /dev/null and b/restaraunt website/restraunt website/images1/umesh-soni-g1qlhFbWPKg-unsplash.jpg differ diff --git a/restaraunt website/restraunt website/index.html b/restaraunt website/restraunt website/index.html new file mode 100644 index 0000000..82f2ffe --- /dev/null +++ b/restaraunt website/restraunt website/index.html @@ -0,0 +1,443 @@ + + + + + + + + + Sonali's Cuisine + + + + + + + + + + + + + + +
+
+
+
+
+ +

THE TASTE OF INDIA

+

+ We are an indian cuisine restaurant offering a wide variety of food experience in both casual and fine + dining + environment. +

+ +
+
+
+
+ +
+
+
+
+
+ + +
+
+
+
+
+ clock icon +
+

+ 10 AM - 7 PM +

+

+ Opening Hour +

+
+
+
+ clock icon +
+

+ GEC, Chittagong +

+

+ Address +

+
+
+
+ clock icon +
+

+ +880123443 +

+

+ Call Now +

+
+
+
+
+ + +
+
+
+
+
+
+ food img +
+

+ Amritsari Kadhai Chicken +

+

+ $18 +

+
+ 3 stars +
+

+ Lorem ipsum dolor sit amet consectetur adipisicing elit. Aut iusto, necessitatibus eaque, quam blanditiis itaque alias saepe cum sed expedita, aliquam magnam? Minus eum inventore dicta enim. Rerum vitae adipisci necessitatibus enim odit ullam quos. +

+
+
+
+ food img +
+

+ Paneer Butter Masala +

+

+ $18 +

+
+ 3 stars +
+

+ Lorem ipsum dolor sit amet consectetur adipisicing elit. Ducimus commodi quos assumenda, doloribus totam enim ipsa odio nam illo at alias dolore perspiciatis voluptatibus! Quisquam itaque possimus debitis ducimus perferendis! +

+
+
+ +
+

+ Our Specials +

+

+ All of our food is prepared daily at our restaurants to ensure the highest quality, freshest meals are + delivered to our customers +

+ Book Table +
+
+
+
+ + +
+
+

+ Top Dishes +

+
+
+
+ food img +
+
+

+ Hyderabadi Biryani +

+

$350

+
+ 3 star +
+
+
+
+
+ food img +
+
+

+ South Special Thali +

+

Rs300

+
+ 3 star +
+
+
+
+
+ food img +
+
+

+ Rajma Chawal +

+

$200

+
+ 3 star +
+
+
+
+
+
+ + + +
+
+
+
+
+ Food img +
+
+ Food img +
+
+ Food img +
+
+
+

20% OFF

+

Demo Dish For Discount

+

+ Rs 300 + Rs 200 +

+
+ 3 stars +
+ Book Table +
+
+
+
+ + + + +
+
+
+
+

+ Why Choose Our Food +

+

+ Quality of Service, Food, Ambiance, and Value of Money are the primary elements for choosing a restaurant. + Sonali's Cuisine is one of the most exquisite fine-dinning restaurant in Chittagong cities with a captivating + view of GEC Hills, perfect ambiance, and scrumptious food. +

+
+
+
+
+
+ quality Food +
+

Quality Food

+
+
+
+ Classical taste +
+

Classical taste

+
+
+
+ Skilled chef +
+

Skilled chef

+
+
+
+ Best service +
+

Best service

+
+
+
+
+
+
+ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/restaraunt website/restraunt website/main.js b/restaraunt website/restraunt website/main.js new file mode 100644 index 0000000..7829e60 --- /dev/null +++ b/restaraunt website/restraunt website/main.js @@ -0,0 +1,47 @@ +const navCloseEl = document.querySelector('.nav__close'); +const navList = document.querySelector('.nav__list'); +const navIconEl = document.querySelector('.nav__icon'); +const navBgOverlayEl = document.querySelector('.nav__bgOverlay'); + + +window.addEventListener('DOMContentLoaded', () =>{ + document.body.style.visibility = 'visible'; +}); + +const navOpen = () => { + navList.classList.add('show'); + navBgOverlayEl.classList.add('active'); + document.body.style= 'visibility: visible; height: 100vh; width:100vw; overflow:hidden;'; +} + +const navClose = () => { + navList.classList.remove('show'); + navBgOverlayEl.classList.remove('active'); + document.body.style= 'visibility: visible; height: initial; width: 100%; overflow-x: hidden;'; +} + +navIconEl.addEventListener('click', navOpen); + +navCloseEl.addEventListener('click', navClose); + +navBgOverlayEl.addEventListener('click', navClose) + +// AOS +// AOS.refreshHard(); +AOS.init({ + offset: 200, // offset (in px) from the original trigger point + delay: 100, // values from 0 to 3000, with step 50ms + duration: 400, // values from 0 to 3000, with step 50ms + easing: 'ease', // default easing for AOS animations + once: false, // whether animation should happen only once - while scrolling down + mirror: false, // whether elements should animate out while scrolling past them + anchorPlacement: 'top-bottom', // defines which position of the element regarding to window should trigger the animation +}); + +// const dishGridEl = Array.from(document.querySelectorAll('#dishGrid')); +// if (dishGridEl.length > 0){ +// // console.log(dishGridEl) +// dishGridEl.forEach(item => { +// item.setAttribute('data-aos', 'fade-up'); +// }) +// } \ No newline at end of file diff --git a/restaraunt website/restraunt website/menu.css b/restaraunt website/restraunt website/menu.css new file mode 100644 index 0000000..c6470bd --- /dev/null +++ b/restaraunt website/restraunt website/menu.css @@ -0,0 +1,106 @@ +/* page title styles */ +#page__title { + padding-top: 3rem; + padding-bottom: 2rem; +} +.page__title__text { + font-size: 2.2rem; + color: var(--black-1); +} +@media only screen and (min-width: 768px) { + #page__title { + padding-top: 5rem; + padding-bottom: 3rem; + } + .page__title__text { + font-size: 3.6rem; + } +} +/* Our Specials Menu Styles */ +#ourSpecials { + padding: 0; +} +.ourSpecials__title { + font-size: 1.8rem; + color: var(--black-1); + margin-bottom: 2rem; +} +.ourSpecials__wrapper { + display: flex; + gap: 1.5rem; + flex-direction: column; + max-width: 400px; +} +.ourSpecials__item { + flex: 1; + display: flex; + gap: 2rem; + background-color: var(--lightGreen-1); + padding: 1.5rem; + border-radius: 12px; +} +.ourSpecials__item__img, +.ourSpecials__item__info { + flex: 1; +} +.ourSpecials__item__img { + border-radius: 12px; + overflow: hidden; +} +.ourSpecials__item__img img { + object-fit: cover; +} +.ourSpecials__item__title { + font-size: 2.4rem; + font-weight: 500; + margin-bottom: 1rem; + color: var(--black-1); + line-height: 1.2em; +} +.ourSpecials__item__price { + font-size: 1.8rem; + color: var(--green-1); + font-weight: 600; + margin-bottom: 1rem; +} +.ourSpecials__item__stars { + width: max-content; +} +@media only screen and (min-width: 768px) { + .ourSpecials__title { + font-size: 2.4rem; + } + .ourSpecials__wrapper { + flex-direction: row; + gap: 2rem; + max-width: none; + } + .ourSpecials__item { + padding: 3rem; + gap: 2rem; + } + .ourSpecials__item__title { + font-size: 3rem; + margin-bottom: 1.5rem; + } + .ourSpecials__item__price { + font-size: 2.4rem; + margin-bottom: 1.5rem; + } +} +@media only screen and (min-width: 1100px) { + .ourSpecials__item__img { + flex: 4; + } + .ourSpecials__item__info { + flex: 3; + } +} + +/* Dish Grid Styles */ +#dishGrid { + padding-bottom: 0; +} +#dishGrid:last-of-type { + padding-bottom: 10rem; +} diff --git a/restaraunt website/restraunt website/menu.html b/restaraunt website/restraunt website/menu.html new file mode 100644 index 0000000..4a0b19a --- /dev/null +++ b/restaraunt website/restraunt website/menu.html @@ -0,0 +1,524 @@ + + + + + + + + + Menu | Sonali's Cuisine + + + + + + + + + + + + + + + +
+
+

+ Explore Our Menu +

+
+
+ +
+
+

Our Specials

+
+
+
+ food img +
+
+

+ Sweet Potato Fries Bowl +

+

$12

+
+ 3 stars +
+
+
+
+
+ food img +
+
+

+ Vegan Salad bowl +

+

$12

+
+ 3 stars +
+
+
+
+
+
+ + +
+
+

+ Top Dishes +

+
+
+
+ food img +
+
+

+ Hot Green Bowl +

+

$12

+
+ 3 star +
+
+
+
+
+ food img +
+
+

+ Hot Green Bowl +

+

$12

+
+ 3 star +
+
+
+
+
+ food img +
+
+

+ Hot Green Bowl +

+

$12

+
+ 3 star +
+
+
+
+
+
+ + +
+
+

+ Breakfast +

+
+
+
+ food img +
+
+

+ Hot Green Bowl +

+

$12

+
+ 3 star +
+
+
+
+
+ food img +
+
+

+ Hot Green Bowl +

+

$12

+
+ 3 star +
+
+
+
+
+ food img +
+
+

+ Hot Green Bowl +

+

$12

+
+ 3 star +
+
+
+
+
+ food img +
+
+

+ Hot Green Bowl +

+

$12

+
+ 3 star +
+
+
+
+
+ food img +
+
+

+ Hot Green Bowl +

+

$12

+
+ 3 star +
+
+
+
+
+
+ + +
+
+

+ Lunch +

+
+
+
+ food img +
+
+

+ Hot Green Bowl +

+

$12

+
+ 3 star +
+
+
+
+
+ food img +
+
+

+ Hot Green Bowl +

+

$12

+
+ 3 star +
+
+
+
+
+ food img +
+
+

+ Hot Green Bowl +

+

$12

+
+ 3 star +
+
+
+
+
+ food img +
+
+

+ Hot Green Bowl +

+

$12

+
+ 3 star +
+
+
+
+
+ food img +
+
+

+ Hot Green Bowl +

+

$12

+
+ 3 star +
+
+
+
+
+
+ + +
+
+

+ Dinner +

+
+
+
+ food img +
+
+

+ Hot Green Bowl +

+

$12

+
+ 3 star +
+
+
+
+
+ food img +
+
+

+ Hot Green Bowl +

+

$12

+
+ 3 star +
+
+
+
+
+ food img +
+
+

+ Hot Green Bowl +

+

$12

+
+ 3 star +
+
+
+
+
+ food img +
+
+

+ Hot Green Bowl +

+

$12

+
+ 3 star +
+
+
+
+
+ food img +
+
+

+ Hot Green Bowl +

+

$12

+
+ 3 star +
+
+
+
+
+
+ + + + + + + + + + + + \ No newline at end of file diff --git a/restaraunt website/video link.txt b/restaraunt website/video link.txt new file mode 100644 index 0000000..58dfc22 --- /dev/null +++ b/restaraunt website/video link.txt @@ -0,0 +1 @@ +https://www.youtube.com/watch?v=4y-_3Ayiauw \ No newline at end of file