Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
112 changes: 111 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Ex.07 Restaurant Website
## Date:
## Date: 5/5/2025

## AIM:
To develop a static Restaurant website to display the food items and services provided by them.
Expand Down Expand Up @@ -28,9 +28,119 @@ Validate the HTML code.
Publish the website in the given URL.

## PROGRAM:
```
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Restaurant Portal</title>
<style>
body {
margin: 0;
font-family: 'Segoe UI', sans-serif;
background-color: #fffaf0;
}
header {
background-color: #8B0000;
color: white;
text-align: center;
padding: 2em;
}
nav {
background-color: #a52a2a;
text-align: center;
}
nav a {
color: white;
text-decoration: none;
padding: 1em;
display: inline-block;
}
nav a:hover {
background-color: #7b1f1f;
}
section {
padding: 2em;
max-width: 1000px;
margin: 1em auto;
background-color: white;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
img {
width: 100%;
height: auto;
margin-top: 1em;
border-radius: 10px;
}
footer {
background-color: #8B0000;
color: white;
text-align: center;
padding: 1em;
margin-top: 2em;
}
</style>
</head>
<body>

<header>
<h1>ELIX EATS</h1>
<p>"Taste That Talks." </p>
</header>

<nav>
<a href="#home">Home</a>
<a href="#menu">Menu</a>
<a href="#about">About</a>
<a href="#gallery">Gallery</a>
<a href="#contact">Contact</a>
</nav>

<section id="home">
<h2>Welcome</h2>
<p>Welcome to our restaurant. We serve delicious meals made with love and fresh ingredients.</p>
<img src="welcomw.jpeg" alt="Home Image" />
</section>

<section id="menu">
<h2>Our Menu</h2>
<p>Add your best-selling dishes here.</p>
<img src="Menu.jpeg" alt="Menu Image" />
</section>

<section id="about">
<h2>About Us</h2>
<p>Write a short description about your restaurant's story and values.</p>
</section>

<section id="gallery">
<h2>Gallery</h2>
<p>Showcase your food, chefs, or restaurant space.</p>
<img src="dish2.png" style="width: 50%; height: auto;" /><img src="dish1.png" style="width: 50%; height: auto;" />


</section>

<section id="contact">
<h2>Contact</h2>
<p>Email: your@email.com</p>
<p>Phone: +91 12345 67890</p>
<p>Address: Your restaurant location</p>
</section>

<footer>
<p>&copy; 2025 Your Restaurant Name. All rights reserved.</p>
</footer>

</body>
</html>
```

## OUTPUT:
![Screenshot 2025-05-08 090358](https://github.com/user-attachments/assets/3053abd1-86e4-48c6-92b1-0b45a9891a61)
![Screenshot 2025-05-08 090408](https://github.com/user-attachments/assets/96675e3b-d17a-4bf6-a7d6-a0374ef7485b)
![Screenshot 2025-05-08 090420](https://github.com/user-attachments/assets/4571b4bd-44cc-4d38-aaea-ea03711de61c)


## RESULT:
Expand Down