Skip to content
Open
Show file tree
Hide file tree
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
145 changes: 143 additions & 2 deletions Frontend/Static Restaurant Website/index.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,150 @@
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title></title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Delicious Bites Restaurant</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
line-height: 1.6;
color: #333;
}
header {
background-color: #8B4513;
color: white;
padding: 1rem 0;
text-align: center;
}
nav ul {
list-style: none;
padding: 0;
}
nav ul li {
display: inline;
margin: 0 1rem;
}
nav a {
color: white;
text-decoration: none;
}
.hero {
background-image: url('https://via.placeholder.com/1200x400?text=Restaurant+Hero+Image');
background-size: cover;
background-position: center;
height: 400px;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: white;
}
.hero h1 {
font-size: 3rem;
margin: 0;
text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.hero p {
font-size: 1.5rem;
margin: 0.5rem 0;
}
section {
padding: 2rem;
max-width: 1200px;
margin: 0 auto;
}
.about, .menu, .contact {
margin-bottom: 2rem;
}
.menu-items {
display: flex;
flex-wrap: wrap;
gap: 1rem;
}
.menu-item {
background-color: #f4f4f4;
border: 1px solid #ddd;
border-radius: 5px;
padding: 1rem;
flex: 1 1 300px;
}
.menu-item h3 {
margin-top: 0;
}
footer {
background-color: #333;
color: white;
text-align: center;
padding: 1rem 0;
}
</style>
</head>
<body>
<header>
<h1>Delicious Bites Restaurant</h1>
<nav>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#menu">Menu</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>

<section class="hero">
<div>
<h1>Welcome to Delicious Bites</h1>
<p>Experience the finest cuisine in town</p>
</div>
</section>

<section id="about" class="about">
<h2>About Us</h2>
<p>Delicious Bites Restaurant has been serving mouth-watering dishes since 2010. Our chefs use only the freshest ingredients to create culinary masterpieces that will tantalize your taste buds. Whether you're looking for a romantic dinner or a family gathering, we have the perfect ambiance and menu to suit your needs.</p>
</section>

<section id="menu" class="menu">
<h2>Our Menu</h2>
<div class="menu-items">
<div class="menu-item">
<h3>Appetizers</h3>
<ul>
<li>Bruschetta - $8.99</li>
<li>Calamari Rings - $12.99</li>
<li>Stuffed Mushrooms - $10.99</li>
</ul>
</div>
<div class="menu-item">
<h3>Main Courses</h3>
<ul>
<li>Grilled Salmon - $24.99</li>
<li>Beef Tenderloin - $28.99</li>
<li>Vegetarian Pasta - $18.99</li>
</ul>
</div>
<div class="menu-item">
<h3>Desserts</h3>
<ul>
<li>Chocolate Lava Cake - $7.99</li>
<li>Tiramisu - $6.99</li>
<li>Fruit Sorbet - $5.99</li>
</ul>
</div>
</div>
</section>

<section id="contact" class="contact">
<h2>Contact Us</h2>
<p><strong>Address:</strong> 123 Main Street, Cityville, ST 12345</p>
<p><strong>Phone:</strong> (123) 456-7890</p>
<p><strong>Email:</strong> info@deliciousbites.com</p>
<p><strong>Hours:</strong> Mon-Fri: 11am-10pm, Sat-Sun: 12pm-11pm</p>
</section>

<footer>
<p>&copy; 2023 Delicious Bites Restaurant. All rights reserved.</p>
</footer>
</body>
</html>
4 changes: 2 additions & 2 deletions Frontend/TO-DO App/TO_DO.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<head>
<meta charset="utf-8">
<!-- Somehow I got an error, so I comment the title, just uncomment to show -->
<!-- <title>Calculator</title> -->
<title>Calculator</title>
<style>
*{
margin: 0;
Expand All @@ -19,7 +19,7 @@
justify-content: center;
align-items: center;
min-height: 100vh;
background: linear-gradient(#9cebfc,#6ae1fb);
background: linear-gradient(#517b84,#6ae1fb);
}
.center{
/* display: none; */
Expand Down