Skip to content

Commit

Permalink
Merge pull request #4 from kaustubh589/main
Browse files Browse the repository at this point in the history
commit
  • Loading branch information
surajsharma14 authored Oct 3, 2023
2 parents c5c16ad + f0f197d commit 77a09e2
Show file tree
Hide file tree
Showing 2 changed files with 74 additions and 2 deletions.
53 changes: 51 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,51 @@
# Restaurant-Website
Welcome to Company, where food becomes an experience. Our innovative dishes blend local flavors with global inspirations, served in a chic and inviting atmosphere. Immerse yourself in a culinary journey that celebrates artistry and taste. Join us at Company for a memorable dining affair unlike any other.
# Restaurant Website

This project is a simple and modern restaurant website showcasing various features including a hero section, product features, a menu display, and a reservation form. It's designed to provide an engaging user experience and demonstrate fundamental web development concepts.


## Features

- **Hero Section**: A visually appealing hero section displaying promotional content and a call-to-action button.
- **Product Features**: Highlighted features of the restaurant, such as discount vouchers, fresh healthy food, and fast home delivery.
- **Menu Display**: An interactive grid displaying various items from the menu.
- **Reservation Form**: An easy-to-use form for making a reservation.

## Getting Started

Follow these instructions to get a copy of the project up and running on your local machine for development and testing purposes.

### Prerequisites

To run the project, you'll need the following:

- A web browser (e.g., Google Chrome, Mozilla Firefox)

### Installation

1. Clone the repository to your local machine using your preferred method (HTTPS, SSH, GitHub CLI):

```bash
git clone https://github.com/your_username/restaurant-website.git
```

Replace `your_username` with your GitHub username.

2. Navigate to the project directory:

```bash
cd restaurant-website
```

3. Open the `index.html` file in a web browser of your choice.

## Usage

Simply open the `index.html` file in a web browser to view the website and interact with its various sections. Modify the HTML, CSS, and JavaScript files to customize the website to your requirements.

## Contributing

If you'd like to contribute to this project, feel free to fork the repository, make your changes, and submit a pull request. Contributions are always welcome!
## License
This project is licensed under the [MIT License](LICENSE) - see the [LICENSE](LICENSE) file for details.
23 changes: 23 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,29 @@ <h2>Explore Our Menu</h2>
</div>
</div>
</div>
<div class="reservation">
<div class="container">
<div class="reservation_content">
<h2>Make a Reservation</h2>
<form id="reservationForm">
<input type="text" placeholder="Full Name" required />
<input type="email" placeholder="Email" required />
<input type="tel" placeholder="Phone" required />
<input type="date" placeholder="Reservation Date" required />
<input type="time" placeholder="Reservation Time" required />
<textarea
placeholder="Special Requests"
rows="4"
required
></textarea>
<button type="submit">Submit</button>
</form>
</div>
<div class="reservation_image">
<img src="images/reservation_image.png" alt="reservation" />
</div>
</div>
</div>
</div>
<footer>
<div class="footer_container">
Expand Down

0 comments on commit 77a09e2

Please sign in to comment.