├── .github ├── issue_template.md └── pull_request_template.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── MEMBERS.md ├── README.md ├── about.html ├── contact.html ├── gallery.html ├── images ├── beverages.jpg ├── catering.png ├── chef.jpg ├── dessert.jpg ├── dman.png ├── fav-icon.png ├── gallery.jpg ├── hero.png ├── icons8-cooking-pot-50.png ├── maincourse.jpg ├── review1.jpg ├── review2.jpg ├── review3.jpg ├── review4.jpg ├── review5.jpg ├── roasted-chicken.png ├── scrtotop.jfif ├── signature.png ├── slide1.jpg ├── slide2.jpg ├── slide3.jpg ├── slide3.png ├── starters.jpg ├── table-reservation.jpg └── ug.png ├── index.html ├── menu.html ├── reviews.html ├── scripts └── script.js ├── service.html ├── styles ├── about.css ├── contact.css ├── gallery.css ├── index.css ├── menu.css ├── reviews.css ├── service.css └── table-reserv.css └── table-reserv.html /.github/issue_template.md: -------------------------------------------------------------------------------- 1 | (Thanks for reporting an issue! Please make sure you click the link above to view the issue guidelines, then fill out the blanks below.) 2 | 3 | What are the steps to reproduce this issue? 4 | ------------------------------------------- 5 | 1. … 6 | 2. … 7 | 3. … 8 | 9 | What happens? 10 | ------------- 11 | … 12 | 13 | What were you expecting to happen? 14 | ---------------------------------- 15 | … 16 | 17 | Any logs, error output, etc? 18 | ---------------------------- 19 | (If it’s long, please paste to https://ghostbin.com/ and insert the link here.) 20 | 21 | 22 | Any other comments? 23 | ------------------- 24 | … 25 | 26 | What versions of software are you using? 27 | ---------------------------------------- 28 | **Operating System:** … 29 | 30 | **Toolchain Version:** … 31 | 32 | **SDK Version:** … 33 | -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- 1 | Before submitting your PR, please review the following checklist: 2 | 3 | 4 | - [ ] **CONSIDER** adding a unit test if your PR resolves an issue. 5 | - [ ] **DO** keep pull requests small so they can be easily reviewed. 6 | - [ ] **DO** make sure unit tests pass. 7 | - [ ] **DO** make sure any public APIs are XML documented. 8 | - [ ] **DO** make sure not to introduce any compiler warnings. 9 | - [ ] **AVOID** breaking the continuous integration build. 10 | - [ ] **AVOID** making significant changes to the driver's overall architecture. 11 | 12 | 13 | ### Description 14 | Please describe your pull request. 15 | 16 | 💔Thank you! 17 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | We as members, contributors, and leaders pledge to make participation in our 6 | community a harassment-free experience for everyone, regardless of age, body 7 | size, visible or invisible disability, ethnicity, sex characteristics, gender 8 | identity and expression, level of experience, education, socio-economic status, 9 | nationality, personal appearance, race, religion, or sexual identity 10 | and orientation. 11 | 12 | We pledge to act and interact in ways that contribute to an open, welcoming, 13 | diverse, inclusive, and healthy community. 14 | 15 | ## Our Standards 16 | 17 | Examples of behavior that contributes to a positive environment for our 18 | community include: 19 | 20 | * Demonstrating empathy and kindness toward other people 21 | * Being respectful of differing opinions, viewpoints, and experiences 22 | * Giving and gracefully accepting constructive feedback 23 | * Accepting responsibility and apologizing to those affected by our mistakes, 24 | and learning from the experience 25 | * Focusing on what is best not just for us as individuals, but for the 26 | overall community 27 | 28 | Examples of unacceptable behavior include: 29 | 30 | * The use of sexualized language or imagery, and sexual attention or 31 | advances of any kind 32 | * Trolling, insulting or derogatory comments, and personal or political attacks 33 | * Public or private harassment 34 | * Publishing others' private information, such as a physical or email 35 | address, without their explicit permission 36 | * Other conduct which could reasonably be considered inappropriate in a 37 | professional setting 38 | 39 | ## Enforcement Responsibilities 40 | 41 | Project maintainers and event organizers are responsible for clarifying and enforcing our standards of 42 | acceptable behavior and will take appropriate and fair corrective action in 43 | response to any behavior that they deem inappropriate, threatening, offensive, 44 | or harmful. 45 | 46 | Project maintainers and event organizers have the right and responsibility to remove, edit, or reject 47 | comments, commits, code, wiki edits, issues, and other contributions that are 48 | not aligned to this Code of Conduct, and will communicate reasons for moderation 49 | decisions when appropriate. 50 | 51 | ## Scope 52 | 53 | This Code of Conduct applies within all community spaces, and also applies when 54 | an individual is officially representing the community in public spaces. 55 | Examples of representing our community include using an official e-mail address, 56 | posting via an official social media account, or acting as an appointed 57 | representative at an online or offline event. 58 | 59 | ## Enforcement 60 | 61 | Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at . All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. 62 | 63 | Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. 64 | 65 | ## Enforcement Guidelines 66 | 67 | Project maintainers and event organizers will follow these Community Impact Guidelines in determining 68 | the consequences for any action they deem in violation of this Code of Conduct: 69 | 70 | ### 1. Correction 71 | 72 | **Community Impact**: Use of inappropriate language or other behavior deemed 73 | unprofessional or unwelcome in the community. 74 | 75 | **Consequence**: A private, written warning from community leaders, providing 76 | clarity around the nature of the violation and an explanation of why the 77 | behavior was inappropriate. A public apology may be requested. 78 | 79 | ### 2. Warning 80 | 81 | **Community Impact**: A violation through a single incident or series 82 | of actions. 83 | 84 | **Consequence**: A warning with consequences for continued behavior. No 85 | interaction with the people involved, including unsolicited interaction with 86 | those enforcing the Code of Conduct, for a specified period of time. This 87 | includes avoiding interactions in community spaces as well as external channels 88 | like social media. Violating these terms may lead to a temporary or 89 | permanent ban. 90 | 91 | ### 3. Temporary Ban 92 | 93 | **Community Impact**: A serious violation of community standards, including 94 | sustained inappropriate behavior. 95 | 96 | **Consequence**: A temporary ban from any sort of interaction or public 97 | communication with the community for a specified period of time. No public or 98 | private interaction with the people involved, including unsolicited interaction 99 | with those enforcing the Code of Conduct, is allowed during this period. 100 | Violating these terms may lead to a permanent ban. 101 | 102 | ### 4. Permanent Ban 103 | 104 | **Community Impact**: Demonstrating a pattern of violation of community 105 | standards, including sustained inappropriate behavior, harassment of an 106 | individual, or aggression toward or disparagement of classes of individuals. 107 | 108 | **Consequence**: A permanent ban from any sort of public interaction within 109 | the community. 110 | 111 | ## Attribution 112 | 113 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], 114 | version 2.0, available at 115 | https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. 116 | 117 | Community Impact Guidelines were inspired by [Mozilla's code of conduct 118 | enforcement ladder](https://github.com/mozilla/diversity). 119 | 120 | [homepage]: https://www.contributor-covenant.org 121 | 122 | For answers to common questions about this code of conduct, see the FAQ at 123 | https://www.contributor-covenant.org/faq. Translations are available at 124 | https://www.contributor-covenant.org/translations. 125 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | ## 🤝First time contributing? We will help you out.👍 2 | 3 | ![GitHub custom open for collaboration](https://img.shields.io/badge/Open%20For-Collaboration-brightgreen?style=for-the-badge) 4 | 5 | Refer to the following articles on the basics of Git and Github and can also contact the Project Mentors, in case you are stuck: 6 | 7 | - [Getting started with Git and GitHub](https://docs.github.com/en/free-pro-team@latest/github/getting-started-with-github) 8 | - [Forking a Repo](https://help.github.com/en/github/getting-started-with-github/fork-a-repo) 9 | - [Cloning a Repo](https://help.github.com/en/desktop/contributing-to-projects/creating-a-pull-request) 10 | - [How to create a Pull Request](https://opensource.com/article/19/7/create-pull-request-github) 11 | 12 | ***If you don't have git on your machine, [install it](https://help.github.com/articles/set-up-git/).*** 13 | 14 | ## 💥 How to Contribute 15 | 16 | [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com) 17 | [![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.png?v=103)](https://github.com/ellerbrock/open-source-badges/) 18 | 19 | - Take a look at the Existing [Issues](https://github.com/sifa123/Dev-Kitchen.git) or create your own Issues! 20 | - Wait for the Issue to be assigned to you after which you can start working on it. 21 | - Fork the Repo and create a Branch for any Issue that you are working upon. 22 | - Read the [Code of Conduct](https://github.com/sifa123/Dev-Kitchen.git) 23 | - Create a Pull Request which will be promptly reviewed and suggestions would be added to improve it. 24 | - Add Screenshots to help us know what this Script is all about. 25 | 26 | # How to make a Pull Request 27 | 28 | If you think that you can add a new feature or want to fix a bug. We invite you to contribute to Dev-Kitchen and make this project better. To start contributing, follow the below instructions: 29 | 30 | 1. Create a folder at your desire location (usually at your desktop). 31 | 32 | 2. Open Git Bash Here 33 | 34 | 3. Create a Git repository. 35 | 36 | Run command `git init` 37 | 38 | 4. Fork the [repository](https://github.com/sifa123/Dev-Kitchen). 39 | 40 | 5. Clone your forked repository of project. 41 | 42 | ```git clone 43 | git clone https://github.com//Dev-Kitchen.git 44 | ``` 45 | 46 | 6. Navigate to the project directory. 47 | 48 | ``` 49 | cd Dev-Kitchen 50 | ``` 51 | 52 | 7. Add a reference(remote) to the original repository. 53 | 54 | ``` 55 | git remote add upstream https://github.com/sifa123/Dev-Kitchen.git 56 | ``` 57 | 58 | 8. Check the remotes for this repository. 59 | 60 | ``` 61 | git remote -v 62 | ``` 63 | 64 | 9. Always take a pull from the upstream repository to your main branch to keep it updated as per the main project repository. 65 | 66 | ``` 67 | git pull upstream main 68 | ``` 69 | 70 | 10. Create a new branch(prefer a branch name that relates to your assigned issue). 71 | 72 | ``` 73 | git checkout -b 74 | ``` 75 | 76 | 11. Perform your desired changes to the code base. 77 | 78 |

79 | 80 | 12. Check your changes. 81 | 82 | ``` 83 | git status 84 | ``` 85 | 86 | ``` 87 | git diff 88 | ``` 89 | 90 | 13. Stage your changes. 91 | 92 | ``` 93 | git add . <\files_that_you_made_changes> 94 | ``` 95 | 96 | 14. Commit your changes. 97 | 98 | ``` 99 | git commit -m "relavant message" 100 | ``` 101 | 102 | 15. Push the committed changes in your feature branch to your remote repository. 103 | 104 | ``` 105 | git push -u origin 106 | ``` 107 | 108 | 16. To create a pull request, click on `compare and pull requests`. 109 | 110 | 17. Add appropriate title and description to your PR explaining your changes. 111 | 112 | 18. Click on `Create pull request`. 113 | 114 |

115 | 116 | Congratulations🎉, you have made a PR to the Dev-Kitchen. 117 | Wait for your submission to be accepted and your PR to be merged by a maintainer. 118 | 119 | If you have any doubts please let us know in the comments. 120 | 121 | --- 122 | 123 | ## Open Source Programs we have been associated with: 124 | 125 |

126 | 127 | 128 |

129 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 Sefat Siddiquea Sifa 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /MEMBERS.md: -------------------------------------------------------------------------------- 1 | # Dev Kitchen 2 | 3 | 4 | 5 | 6 | - To add your name 7 | 8 | ```- [Your name](https://github.com/username)``` 9 | 10 | 11 | --- 12 | 13 | - [Sefat Siddiquea](https://github.com/sifa123) 14 | - [ANSHIKA SINGH](https://github.com/singhanshika311)`` 15 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Dev Kitchen 2 | Hello!! Welcome to Dev Kitchen. 3 | This project is a restaurant website and has been developed to meet the needs of a simple restaurant. Here the user will see many delicious items, food reviews, they can even book a table straight from our website and so many other intriguing yet helpful things. 4 | 5 | ## Tech Stack: 6 | 7 | **1. HTML** 8 | 9 | **2. CSS** 10 | 11 | **3. Bootstrap** 12 | 13 | **4. JavaScript** 14 | 15 | ## A sneak peek into our website: 16 | 17 | 18 | ### Home Page: 19 | 20 |

21 | 22 |

23 | 24 | ### Services: 25 | 26 |

27 | 28 |

29 | 30 | 31 | ### About: 32 | 33 |

34 |

35 |

36 |
37 | At Dev-Kitchen , we’re tied in with presenting crisp food, regardless of 38 | whether it implies going the additional mile. When you stroll through our entryways, we do what we can to make everybody feel 39 | comfortable and happy. 40 | 41 | 42 |
43 | 44 |

45 | 46 | 47 | 48 | 49 | ## How to get started❓ 50 | 51 | You can refer to the following articles on the basics of Git and Github and also contact the Project Mentor, in case you are stuck: 52 | 53 | - If you don't have git on your machine, [install](https://help.github.com/articles/set-up-git/) it. 54 | - [Watch this video to get started, if you have no clue about open source](https://youtu.be/SL5KKdmvJ1U) 55 | - [Forking a Repo](https://help.github.com/en/github/getting-started-with-github/fork-a-repo) 56 | - [Cloning a Repo](https://docs.github.com/en/github/creating-cloning-and-archiving-repositories/cloning-a-repository-from-github/cloning-a-repository) 57 | - [How to create an Issue](https://docs.github.com/en/issues/tracking-your-work-with-issues/creating-issues/creating-an-issue) 58 | - [How to create a Pull Request](https://opensource.com/article/19/7/create-pull-request-github) 59 | - [Getting started with Git and GitHub](https://towardsdatascience.com/getting-started-with-git-and-github-6fcd0f2d4ac6) 60 | 61 | 62 | 63 | 64 | ## Contributing: 65 | Pull requests and Issues are welcomed. For any changes, please raise an issue first to discuss what you would like to change. 66 | 67 | - [Contributing guidelines](https://github.com/sifa123/Dev-Kitchen/blob/main/CONTRIBUTING.md) 68 | - [Code of conduct](https://github.com/sifa123/Dev-Kitchen/blob/main/CODE_OF_CONDUCT.md) 69 | 70 | ## Project Admin: 71 | 72 |

73 | 74 |

75 |
Sefat Siddiquea Sifa 76 | 77 | ## 🌟 Contributors: 78 | 79 | Thanks to these wonderful people ✨✨: 80 | 81 | 82 | 83 | 88 | 89 |
84 | 85 | 86 | 87 |
90 | 91 | ## Open Source Programs we have been associated with: 92 | 93 |

94 | 95 |

96 | 97 | 98 | 99 |

100 | 101 | 102 | 103 | 104 | -------------------------------------------------------------------------------- /about.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | About Us 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 |
18 |

EXECUTIVE CHEF

19 |
20 |
21 |
22 |

Guests listening to your restaurant opening speech will have a healthy appetite for your words of wisdom. With the help of these speeches you will feed their minds by talking about the importance of good food in our lives, of the value of quality ingredients and the pleasure to be had from a fine meal.You will also say that you are sure the restaurant is set to become a firm favorite with people in the locality. You may wish to end your restaurant opening speech with a tasty morsel, courtesy of the light-hearted poems provided.

23 |
24 |

Signature :

25 |
26 |
27 |
28 | 29 |
30 |

Robert Downey Franklin

31 |
32 |
33 |

(Executive Chef)

34 |
35 |
36 |
37 |
38 | 39 |
63 | 64 | 65 | 66 | -------------------------------------------------------------------------------- /contact.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Contact Us 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /gallery.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Dev-Kitchen:Gallery 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /images/beverages.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sifa123/Dev-Kitchen/cd069642c7cdd5f1a9ce47f647c05451112650f6/images/beverages.jpg -------------------------------------------------------------------------------- /images/catering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sifa123/Dev-Kitchen/cd069642c7cdd5f1a9ce47f647c05451112650f6/images/catering.png -------------------------------------------------------------------------------- /images/chef.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sifa123/Dev-Kitchen/cd069642c7cdd5f1a9ce47f647c05451112650f6/images/chef.jpg -------------------------------------------------------------------------------- /images/dessert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sifa123/Dev-Kitchen/cd069642c7cdd5f1a9ce47f647c05451112650f6/images/dessert.jpg -------------------------------------------------------------------------------- /images/dman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sifa123/Dev-Kitchen/cd069642c7cdd5f1a9ce47f647c05451112650f6/images/dman.png -------------------------------------------------------------------------------- /images/fav-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sifa123/Dev-Kitchen/cd069642c7cdd5f1a9ce47f647c05451112650f6/images/fav-icon.png -------------------------------------------------------------------------------- /images/gallery.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sifa123/Dev-Kitchen/cd069642c7cdd5f1a9ce47f647c05451112650f6/images/gallery.jpg -------------------------------------------------------------------------------- /images/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sifa123/Dev-Kitchen/cd069642c7cdd5f1a9ce47f647c05451112650f6/images/hero.png -------------------------------------------------------------------------------- /images/icons8-cooking-pot-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sifa123/Dev-Kitchen/cd069642c7cdd5f1a9ce47f647c05451112650f6/images/icons8-cooking-pot-50.png -------------------------------------------------------------------------------- /images/maincourse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sifa123/Dev-Kitchen/cd069642c7cdd5f1a9ce47f647c05451112650f6/images/maincourse.jpg -------------------------------------------------------------------------------- /images/review1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sifa123/Dev-Kitchen/cd069642c7cdd5f1a9ce47f647c05451112650f6/images/review1.jpg -------------------------------------------------------------------------------- /images/review2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sifa123/Dev-Kitchen/cd069642c7cdd5f1a9ce47f647c05451112650f6/images/review2.jpg -------------------------------------------------------------------------------- /images/review3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sifa123/Dev-Kitchen/cd069642c7cdd5f1a9ce47f647c05451112650f6/images/review3.jpg -------------------------------------------------------------------------------- /images/review4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sifa123/Dev-Kitchen/cd069642c7cdd5f1a9ce47f647c05451112650f6/images/review4.jpg -------------------------------------------------------------------------------- /images/review5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sifa123/Dev-Kitchen/cd069642c7cdd5f1a9ce47f647c05451112650f6/images/review5.jpg -------------------------------------------------------------------------------- /images/roasted-chicken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sifa123/Dev-Kitchen/cd069642c7cdd5f1a9ce47f647c05451112650f6/images/roasted-chicken.png -------------------------------------------------------------------------------- /images/scrtotop.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sifa123/Dev-Kitchen/cd069642c7cdd5f1a9ce47f647c05451112650f6/images/scrtotop.jfif -------------------------------------------------------------------------------- /images/signature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sifa123/Dev-Kitchen/cd069642c7cdd5f1a9ce47f647c05451112650f6/images/signature.png -------------------------------------------------------------------------------- /images/slide1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sifa123/Dev-Kitchen/cd069642c7cdd5f1a9ce47f647c05451112650f6/images/slide1.jpg -------------------------------------------------------------------------------- /images/slide2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sifa123/Dev-Kitchen/cd069642c7cdd5f1a9ce47f647c05451112650f6/images/slide2.jpg -------------------------------------------------------------------------------- /images/slide3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sifa123/Dev-Kitchen/cd069642c7cdd5f1a9ce47f647c05451112650f6/images/slide3.jpg -------------------------------------------------------------------------------- /images/slide3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sifa123/Dev-Kitchen/cd069642c7cdd5f1a9ce47f647c05451112650f6/images/slide3.png -------------------------------------------------------------------------------- /images/starters.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sifa123/Dev-Kitchen/cd069642c7cdd5f1a9ce47f647c05451112650f6/images/starters.jpg -------------------------------------------------------------------------------- /images/table-reservation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sifa123/Dev-Kitchen/cd069642c7cdd5f1a9ce47f647c05451112650f6/images/table-reservation.jpg -------------------------------------------------------------------------------- /images/ug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sifa123/Dev-Kitchen/cd069642c7cdd5f1a9ce47f647c05451112650f6/images/ug.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | Dev-Kitchen 22 | 23 | 24 | 49 | 50 | 51 | 52 | 67 | 68 | 69 | 107 |
108 | 109 |
110 |
111 |
112 |

Served With Love ❤️

113 |


At Dev-Kitchen , we’re tied in with presenting crisp food, regardless of
114 | whether it implies going the additional mile. When you stroll through our entryways, 115 | we do what we can to make everybody feel
comfortable and happy.

116 | Explore 117 |

118 |
119 | 176 |

177 |
178 |
179 |

WEEKLY SERVED

180 |
181 |
182 |

BASE ON AVERAGE

183 |
184 |
185 |
186 |
187 |
188 |
72
189 |
BUTTER
190 |
191 |
192 |
193 |
194 |
195 |
196 |
200
197 |
CREAM
198 |
199 |
200 |
201 |
202 |
203 |
204 |
100
205 |
CHEESE
206 |
207 |
208 |
209 |
210 |
211 |
212 |
500
213 |
MILK
214 |
215 |
216 |
217 |
218 |
219 |

220 |
221 |
222 |

Our Services

223 |
224 |
225 |
226 |
227 |
228 | 229 |
230 |
231 |

Table Reservation

232 |

Easy Booking

233 |

We provide instant reservation for our clients.

234 |
235 |
236 |
237 |
238 |
239 |
240 | 241 |
242 |
243 |

Food

244 |

Excellent Quality

245 |

We offer our clients excellent healthly & freshly prepared food.

246 |
247 |
248 |
249 |
250 |
251 |
252 | 253 |
254 |
255 |

Catering

256 |

Catering Services

257 |

We at Dev-Kitchen also offers catering service.For more information contact us.

258 |
259 |
260 |
261 |
262 |
263 |

264 | 265 |
266 |
267 |

CUSTOMER REVIEWS

268 |
269 |

270 |
271 |
272 |
273 |
274 | ... 275 |
276 |
277 | 278 | 279 | 280 | 281 | 282 |
283 |
284 |
Mark Zuckerberg
285 |

I had breakfast there this morning and dinner tonight. All were well beyond my expectations. Everything is so fresh. Best clam chowder I have ever had. Clams and linguine were out of this world. Breakfast will knock your slippers off.

286 |

May 18, 2019

287 |
288 | 289 |
290 |
291 |
292 |
293 |
294 | ... 295 |
296 |
297 | 298 | 299 | 300 | 301 | 302 |
303 |
304 |
Bill Gates
305 |

This place knows how to satisfy their clients. Always with a super nice mindset. The food is affordably priced, always delicious and clean.We always get pizza here at least once during our summer visit. All menu options are tasty- truffle fries- the best!!!

306 |

June 28, 2019

307 |
308 | 309 |
310 |
311 |
312 |
313 |
314 | ... 315 |
316 |
317 | 318 | 319 | 320 | 321 | 322 |
323 |
324 |
Jeff Bezos
325 |

Had dinner here recently. My husband ordered the Italian calzone. It came out as a 10” size dinner portion. He claimed it was delicious. The service was excellent.Been coming here for 20+ years. Never disappointed. Good service combined with good food.

326 |

May 18, 2020

327 |
328 | 329 |
330 |
331 |
332 |
333 |
334 | ... 335 |
336 |
337 | 338 | 339 | 340 | 341 | 342 |
343 |
344 |
Elon Musk
345 |

We ate several times at the Fairway because the food was so good. We had breakfast at their sister location the Hole in One (which is attached to the Fairway) every morning. The pastries were delicious and fresh.

346 |

Feb 18, 2019

347 |
348 | 349 |
350 |
351 |
352 |
353 |
354 | ... 355 |
356 |
357 | 358 | 359 | 360 | 361 | 362 |
363 |
364 |
Steve Jobs
365 |

The service was way above standard. Jack our server was attentive and didn’t skip a detail. My salad was spectacular! I did order a cannoli with toasted almonds on the ends and highly recommend it. Definitely will make a trip back again.

366 |

Jan 08, 2021

367 |
368 | 369 |
370 |
371 |
372 |
373 | 374 |
375 | 376 |
377 |
378 |
379 |
380 |

ABOUT US

381 |
382 |
383 |

At Dev-Kitchen , we’re tied in with presenting crisp food, regardless of 384 | whether it implies going the additional mile. When you stroll through our entryways, we do what we can to make everybody feel comfortable and happy.MORE»

385 |
386 |
387 |
388 |

GALLERY

389 |
390 | 391 |
392 | 393 |
394 |
395 |
396 |
397 |

BUSINESS HOURS

398 |
399 |
10:00 AM TO 2:00 AM
400 |
401 |
402 |
403 | 404 | 421 |
422 |

423 | © 2021 Copyright: Created By: DevIncept 424 |

425 |
426 |
427 | 428 | 429 | 430 | 433 | 434 | 435 | 452 | 453 | 454 | 455 | 492 | 530 | 531 | 532 | 533 | -------------------------------------------------------------------------------- /menu.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Menu 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /reviews.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | Reviews 12 | 13 | 14 |
15 | 67 |
68 | 69 | 70 | 71 | -------------------------------------------------------------------------------- /scripts/script.js: -------------------------------------------------------------------------------- 1 | AOS.init(); 2 | $(document).ready(function(){ 3 | $(window).scroll(function(){ 4 | // sticky navbar on scroll script 5 | if(this.scrollY > 20){ 6 | $('.navbar').addClass("sticky"); 7 | }else{ 8 | $('.navbar').removeClass("sticky"); 9 | } 10 | 11 | // scroll-up button show/hide script 12 | if(this.scrollY > 500){ 13 | $('.scroll-up-btn').addClass("show"); 14 | }else{ 15 | $('.scroll-up-btn').removeClass("show"); 16 | } 17 | }); 18 | 19 | // slide-up script 20 | $('.scroll-up-btn').click(function(){ 21 | $('html').animate({scrollTop: 0}); 22 | // removing smooth scroll on slide-up button click 23 | $('html').css("scrollBehavior", "auto"); 24 | }); 25 | 26 | $('.navbar .menu li a').click(function(){ 27 | // applying again smooth scroll on menu items click 28 | $('html').css("scrollBehavior", "smooth"); 29 | }); 30 | 31 | // toggle menu/navbar script 32 | $('.menu-btn').click(function(){ 33 | $('.navbar .menu').toggleClass("active"); 34 | $('.menu-btn i').toggleClass("active"); 35 | }); 36 | 37 | // typing text animation script 38 | var typed = new Typed(".typing", { 39 | strings: ["YouTuber", "Developer", "Blogger", "Designer", "Freelancer"], 40 | typeSpeed: 100, 41 | backSpeed: 60, 42 | loop: true 43 | }); 44 | 45 | var typed = new Typed(".typing-2", { 46 | strings: ["YouTuber", "Developer", "Blogger", "Designer", "Freelancer"], 47 | typeSpeed: 100, 48 | backSpeed: 60, 49 | loop: true 50 | }); 51 | 52 | // owl carousel script 53 | $('.carousel').owlCarousel({ 54 | margin: 20, 55 | loop: true, 56 | autoplayTimeOut: 2000, 57 | autoplayHoverPause: true, 58 | responsive: { 59 | 0:{ 60 | items: 1, 61 | nav: false 62 | }, 63 | 600:{ 64 | items: 2, 65 | nav: false 66 | }, 67 | 1000:{ 68 | items: 3, 69 | nav: false 70 | } 71 | } 72 | }); 73 | }); -------------------------------------------------------------------------------- /service.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Our Services 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 |
17 |
18 |

Our Services

19 | 20 |

We provide a great value to our customers by offering them huge discounts and offers

21 |
22 | 23 |
24 |
25 |
26 |
27 | 28 |
29 | 30 |

Hire Us

31 | 32 |

Send us an email to abc@gmail.com for service

33 |
34 |
35 | 36 |
37 |
38 |
39 | 40 |
41 | 42 |

Menu

43 | 44 |

We have a wide range of food items and dishes

45 |
46 |
47 | 48 |
49 |
50 |
51 | 52 |
53 | 54 |

Prices

55 | 56 |

There are so many items of different price ranges

57 |
58 |
59 | 60 |
61 |
62 |
63 | 64 |
65 | 66 |

Find Us

67 | 68 |

You can find us in our map

69 |
70 |
71 | 72 |
73 |
74 |
75 | 76 |
77 | 78 |

Improve Us

79 | 80 |

Write a blog about our team to improve the business

81 |
82 |
83 | 84 |
85 |
86 |
87 | 88 |
89 | 90 |

Timeline

91 | 92 |

We are always open except Saturday and Sunday

93 |
94 |
95 | 96 | 97 |
98 |
99 |
100 | 101 | 102 | 103 | 104 | 105 | -------------------------------------------------------------------------------- /styles/about.css: -------------------------------------------------------------------------------- 1 | *{ 2 | margin:0; 3 | padding: 0; 4 | box-sizing: border-box; 5 | outline: none; 6 | border:none; 7 | } 8 | body { 9 | min-height: 100vh; 10 | } 11 | 12 | /*********************** 13 | footer 14 | ************************/ 15 | 16 | footer { 17 | background: rgb(0, 0, 0); 18 | position: sticky; 19 | top: 100%; 20 | } 21 | 22 | a:link { 23 | padding: 15px; 24 | color: #fff; 25 | text-decoration: none; 26 | } 27 | 28 | a:visited { 29 | 30 | color: #fff; 31 | text-decoration: none; 32 | } 33 | 34 | a:hover { 35 | color: #fff; 36 | text-decoration: none; 37 | } 38 | 39 | a:active { 40 | color: #fff; 41 | text-decoration: none; 42 | } -------------------------------------------------------------------------------- /styles/contact.css: -------------------------------------------------------------------------------- 1 | *{ 2 | margin:0; 3 | padding: 0; 4 | box-sizing: border-box; 5 | outline: none; 6 | border:none; 7 | } 8 | body { 9 | min-height: 100vh; 10 | } 11 | 12 | /*********************** 13 | footer 14 | ************************/ 15 | 16 | footer { 17 | background: rgb(0, 0, 0); 18 | position: sticky; 19 | top: 100%; 20 | } 21 | 22 | a:link { 23 | padding: 15px; 24 | color: #fff; 25 | text-decoration: none; 26 | } 27 | 28 | a:visited { 29 | 30 | color: #fff; 31 | text-decoration: none; 32 | } 33 | 34 | a:hover { 35 | color: #fff; 36 | text-decoration: none; 37 | } 38 | 39 | a:active { 40 | color: #fff; 41 | text-decoration: none; 42 | } -------------------------------------------------------------------------------- /styles/gallery.css: -------------------------------------------------------------------------------- 1 | *{ 2 | margin:0; 3 | padding: 0; 4 | box-sizing: border-box; 5 | outline: none; 6 | border:none; 7 | } 8 | body { 9 | min-height: 100vh; 10 | } 11 | 12 | /*********************** 13 | footer 14 | ************************/ 15 | 16 | footer { 17 | background: rgb(0, 0, 0); 18 | position: sticky; 19 | top: 100%; 20 | } 21 | 22 | a:link { 23 | padding: 15px; 24 | color: #fff; 25 | text-decoration: none; 26 | } 27 | 28 | a:visited { 29 | 30 | color: #fff; 31 | text-decoration: none; 32 | } 33 | 34 | a:hover { 35 | color: #fff; 36 | text-decoration: none; 37 | } 38 | 39 | a:active { 40 | color: #fff; 41 | text-decoration: none; 42 | } -------------------------------------------------------------------------------- /styles/index.css: -------------------------------------------------------------------------------- 1 | * { 2 | margin: 0; 3 | padding: 0; 4 | } 5 | 6 | body { 7 | min-height: 100vh; 8 | } 9 | 10 | /* TOP BAR */ 11 | 12 | .top-bar { 13 | padding: 0px 0; 14 | 15 | font-size: 14px; 16 | color: #ff6f61; 17 | background: #000000; 18 | } 19 | .container-fluid { 20 | display: flex; 21 | } 22 | 23 | .navbar-brand { 24 | flex-direction: row; 25 | } 26 | .container-fluid a:first-child { 27 | margin-right: 85%; 28 | margin-bottom: 0px; 29 | padding: 0px; 30 | } 31 | 32 | ion-icon { 33 | color: #ff6f61; 34 | margin: 0px; 35 | } 36 | ion-icon:hover { 37 | color: orangered; 38 | } 39 | 40 | /* MAIN BAR */ 41 | 42 | #navbar { 43 | display: flex; 44 | align-items: center; 45 | justify-content: center; 46 | position: relative; 47 | top: 0px; 48 | height: 70px; 49 | } 50 | #navbar ul { 51 | display: flex; 52 | font-family: "Baloo Bhai 2", cursive; 53 | font-weight: bold; 54 | position: relative; 55 | right: 45px; 56 | } 57 | #logo { 58 | margin: 20px 25px; 59 | position: relative; 60 | right: 30px; 61 | } 62 | #logo img { 63 | margin: 35px 40px; 64 | height: 65px; 65 | } 66 | #navbar::before { 67 | display: block; 68 | position: absolute; 69 | z-index: -1; 70 | background: linear-gradient(to right, rgb(193, 245, 228), rgb(204, 204, 248)); 71 | opacity: 1; 72 | height: 100%; 73 | width: 100%; 74 | content: ""; 75 | top: 0px; 76 | left: 0px; 77 | } 78 | #navbar ul li { 79 | list-style: none; 80 | font-size: 1.3rem; 81 | } 82 | #navbar ul li a { 83 | color: rgb(8, 80, 161); 84 | padding: 3px 22px; 85 | display: block; 86 | text-decoration: none; 87 | border-radius: 20px; 88 | } 89 | #navbar ul li a:hover { 90 | color: black; 91 | background-color: blanchedalmond; 92 | } 93 | #navbar ul li a { 94 | background-position: center; 95 | transition: background 0.8s; 96 | } 97 | #navbar ul li a:hover { 98 | background: blanchedalmond 99 | radial-gradient(circle, transparent 1%, blanchedalmond 1%) center/15000%; 100 | } 101 | #navbar ul li a:active { 102 | background-color: rgb(89, 193, 241); 103 | background-size: 100%; 104 | transition: background 0s; 105 | } 106 | 107 | /*********************** 108 | footer 109 | ************************/ 110 | 111 | footer { 112 | background: rgb(0, 0, 0); 113 | position: sticky; 114 | top: 100%; 115 | } 116 | 117 | a:link { 118 | padding: 15px; 119 | color: #fff; 120 | text-decoration: none; 121 | } 122 | 123 | a:visited { 124 | color: #fff; 125 | text-decoration: none; 126 | } 127 | 128 | a:hover { 129 | color: #fff; 130 | text-decoration: none; 131 | } 132 | 133 | a:active { 134 | color: #fff; 135 | text-decoration: none; 136 | } 137 | 138 | * { 139 | margin: 0; 140 | padding: 0; 141 | } 142 | 143 | body { 144 | min-height: 100vh; 145 | } 146 | 147 | #btnScrollToTop img { 148 | width: 50px; 149 | height: 50px; 150 | position: fixed; 151 | bottom: 25px; 152 | right: 25px; 153 | border-radius: 28px; 154 | } 155 | 156 | /* HERO SECTION */ 157 | 158 | section { 159 | padding: 9%; 160 | padding-top: 0px; 161 | margin-top: 0px; 162 | } 163 | 164 | .about { 165 | display: flex; 166 | flex-wrap: wrap; 167 | background-size: cover; 168 | align-items: center; 169 | background: url(/images/ug.png); 170 | } 171 | 172 | @import url("https://fonts.googleapis.com/css2?family=Courgette&display=swap"); 173 | @import url("https://fonts.googleapis.com/css2?family=Alegreya+Sans+SC:ital,wght@1,500&display=swap"); 174 | h1 { 175 | font-family: "Bubblegum Sans", cursive; 176 | font-size: 50px; 177 | } 178 | .image img { 179 | float: right; 180 | padding-top: 0px; 181 | height: 30%; 182 | width: 30%; 183 | padding-top: 5%; 184 | padding-right: 5%; 185 | cursor: context-menu; 186 | } 187 | img.vert-move { 188 | -webkit-animation: mover 1s infinite alternate; 189 | animation: mover 1s infinite alternate; 190 | } 191 | img.vert-move { 192 | -webkit-animation: mover 1s infinite alternate; 193 | animation: mover 1s infinite alternate; 194 | } 195 | @-webkit-keyframes mover { 196 | 0% { 197 | transform: translateY(0); 198 | } 199 | 100% { 200 | transform: translateY(-10px); 201 | } 202 | } 203 | @keyframes mover { 204 | 0% { 205 | transform: translateY(0); 206 | } 207 | 100% { 208 | transform: translateY(-10px); 209 | } 210 | } 211 | 212 | .brief { 213 | font-family: "adobe hebrew"; 214 | font-size: 22px; 215 | text-decoration: italic; 216 | } 217 | 218 | .dlogo { 219 | cursor: pointer; 220 | } 221 | .dlogo:hover { 222 | transform: scale(1.1); 223 | transition: 0.5s all ease-in-out; 224 | } 225 | /* HERO SECTION ENDS */ 226 | 227 | /* SERVICES */ 228 | 229 | main { 230 | display: flex; 231 | flex-wrap: wrap; 232 | background: url(/images/ug.png) no-repeat; 233 | background-size: cover; 234 | padding-left: 17%; 235 | padding-bottom: 15%; 236 | } 237 | .flip-card { 238 | background-color: transparent; 239 | width: 300px; 240 | cursor: context-menu; 241 | padding: 15px 20px; 242 | justify-content: space-between; 243 | display: flex; 244 | height: 300px; 245 | padding-bottom: 0%; 246 | perspective: 1000px; 247 | } 248 | .flip-card-front .man { 249 | height: 60%; 250 | width: 60%; 251 | margin-top: 70px; 252 | } 253 | 254 | .serv { 255 | font-family: algerian; 256 | text-align: center; 257 | padding-top: 0px; 258 | padding-bottom: 2px; 259 | } 260 | 261 | h1 { 262 | padding-top: 10%; 263 | } 264 | .flip-card-inner { 265 | position: relative; 266 | width: 100%; 267 | height: 100%; 268 | text-align: center; 269 | transition: transform 0.6s; 270 | transform-style: preserve-3d; 271 | box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); 272 | } 273 | 274 | .flip-card:hover .flip-card-inner { 275 | transform: rotateY(180deg); 276 | } 277 | 278 | .flip-card-front, 279 | .flip-card-back { 280 | position: absolute; 281 | width: 100%; 282 | height: 100%; 283 | -webkit-backface-visibility: hidden; 284 | backface-visibility: hidden; 285 | } 286 | 287 | .flip-card-front { 288 | background-color: rgb(229, 157, 157); 289 | color: black; 290 | } 291 | 292 | .flip-card-back { 293 | background-color: #db92a2; 294 | color: white; 295 | transform: rotateY(180deg); 296 | } 297 | 298 | .flip-card-back h1 { 299 | font-size: 1.7rem; 300 | } 301 | 302 | .link a { 303 | padding: 10px; 304 | } 305 | 306 | .fa-facebook:hover { 307 | font-size: 1.5rem; 308 | color: #4589be; 309 | } 310 | 311 | .fa-google-plus:hover { 312 | font-size: 1.5rem; 313 | color: #ff1919; 314 | } 315 | 316 | .fa-linkedin:hover { 317 | font-size: 1.5rem; 318 | color: #3472eb; 319 | } 320 | 321 | .fa-instagram:hover { 322 | font-size: 1.5rem; 323 | color: #eb3472; 324 | } 325 | 326 | .fa-twitter:hover { 327 | font-size: 1.5rem; 328 | color: aqua; 329 | } 330 | -------------------------------------------------------------------------------- /styles/menu.css: -------------------------------------------------------------------------------- 1 | *{ 2 | margin:0; 3 | padding: 0; 4 | box-sizing: border-box; 5 | outline: none; 6 | border:none; 7 | } 8 | body { 9 | min-height: 100vh; 10 | } 11 | 12 | /*********************** 13 | footer 14 | ************************/ 15 | 16 | footer { 17 | background: rgb(0, 0, 0); 18 | position: sticky; 19 | top: 100%; 20 | } 21 | 22 | a:link { 23 | padding: 15px; 24 | color: #fff; 25 | text-decoration: none; 26 | } 27 | 28 | a:visited { 29 | 30 | color: #fff; 31 | text-decoration: none; 32 | } 33 | 34 | a:hover { 35 | color: #fff; 36 | text-decoration: none; 37 | } 38 | 39 | a:active { 40 | color: #fff; 41 | text-decoration: none; 42 | } -------------------------------------------------------------------------------- /styles/reviews.css: -------------------------------------------------------------------------------- 1 | .image{ 2 | background-image: url('https://media.gettyimages.com/photos/blank-white-diary-with-pen-coffee-and-smart-phone-picture-id872927274?s=2048x2048'); 3 | width: 1050px; 4 | height: 300px; 5 | margin-top: 50px; 6 | margin-left:100px; 7 | } 8 | 9 | .button{ 10 | color: red; 11 | } 12 | 13 | .profile-image{ 14 | width: 15%; 15 | height:15%; 16 | border-radius: 50%; 17 | text-align:center; 18 | border: solid red; 19 | } 20 | 21 | .container-fluid{ 22 | text-align: center; 23 | } 24 | .image-text{ 25 | color: white; 26 | font-weight: bold; 27 | margin-top: 10px; 28 | font-size: 20px; 29 | } 30 | .name{ 31 | color: red; 32 | font-weight: bolder; 33 | } 34 | .carousel-indicators { 35 | top: 280px; 36 | } 37 | 38 | .carousel .carousel-indicators li.active {background-color: red;} 39 | .testimonial-carousel .carousel-control::before { 40 | color: red; 41 | } 42 | 43 | 44 | -------------------------------------------------------------------------------- /styles/service.css: -------------------------------------------------------------------------------- 1 | .container { 2 | max-width: 1320px; 3 | } 4 | 5 | section { 6 | overflow: hidden; 7 | } 8 | 9 | .section-bg { 10 | background: #f5f8fd; 11 | } 12 | 13 | .section-header h3 { 14 | font-size: 36px; 15 | color: #15b9e2; 16 | text-align: center; 17 | font-weight: 700; 18 | position: relative; 19 | font-family: "Montserrat", sans-serif; 20 | } 21 | 22 | .section-header p { 23 | text-align: center; 24 | margin: auto; 25 | font-size: 15px; 26 | padding-bottom: 60px; 27 | color: #38c2d4; 28 | width: 50%; 29 | } 30 | 31 | @media (max-width: 767px) { 32 | .section-header p { 33 | width: 100%; 34 | } 35 | } 36 | 37 | #services { 38 | padding: 60px 0 40px 0; 39 | } 40 | 41 | #services .box { 42 | padding: 30px; 43 | position: relative; 44 | overflow: hidden; 45 | border-radius: 10px; 46 | margin: 0 10px 40px 10px; 47 | background: #fff; 48 | box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1); 49 | transition: all 0.3s ease-in-out; 50 | text-align: center; 51 | } 52 | 53 | #services .box:hover { 54 | transform: scale(1.1); 55 | } 56 | 57 | #services .icon { 58 | margin: 0 auto 15px auto; 59 | padding-top: 12px; 60 | display: inline-block; 61 | text-align: center; 62 | border-radius: 50%; 63 | width: 60px; 64 | height: 60px; 65 | } 66 | 67 | #services .icon .service-icon { 68 | font-size: 36px; 69 | line-height: 1; 70 | } 71 | 72 | #services .title { 73 | font-weight: 700; 74 | margin-bottom: 15px; 75 | font-size: 18px; 76 | } 77 | 78 | #services .title a { 79 | color: #111; 80 | } 81 | 82 | #services .box:hover .title a { 83 | color: #0dd828; 84 | } 85 | 86 | #services .box:hover .title a:hover { 87 | text-decoration: none; 88 | } 89 | 90 | #services .description { 91 | font-size: 14px; 92 | line-height: 28px; 93 | margin-bottom: 0; 94 | text-align: left; 95 | } 96 | -------------------------------------------------------------------------------- /styles/table-reserv.css: -------------------------------------------------------------------------------- 1 | *{ 2 | margin:0; 3 | padding: 0; 4 | box-sizing: border-box; 5 | outline: none; 6 | border:none; 7 | } 8 | body { 9 | min-height: 100vh; 10 | } 11 | 12 | /*********************** 13 | footer 14 | ************************/ 15 | 16 | footer { 17 | background: rgb(0, 0, 0); 18 | } 19 | 20 | a:link { 21 | padding: 15px; 22 | color: #fff; 23 | text-decoration: none; 24 | } 25 | 26 | a:visited { 27 | 28 | color: #fff; 29 | text-decoration: none; 30 | } 31 | 32 | a:hover { 33 | color: #fff; 34 | text-decoration: none; 35 | } 36 | 37 | a:active { 38 | color: #fff; 39 | text-decoration: none; 40 | } -------------------------------------------------------------------------------- /table-reserv.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Table Reservation 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 44 | 45 | 46 | --------------------------------------------------------------------------------