ALI-Lunch-Menu / index.html
bibekyess's picture
Adds new restaurants and displays bonus options
255efa8 unverified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Restaurant Suggestion</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f8ff;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
text-align: center;
}
.container {
background-color: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
max-width: 600px;
width: 100%;
}
h1, h3 {
color: #333;
margin-bottom: 20px;
}
.restaurant {
font-size: 1.2em;
margin: 10px 0;
}
.restaurant a {
color: #007bff;
text-decoration: none;
transition: color 0.3s;
}
.restaurant a:hover {
color: red;
}
.bonus-container {
margin-top: 30px;
padding: 20px;
background-color: #f0f8ff;
border-radius: 8px;
}
.bonus-container h3 {
margin-top: 0;
margin-bottom: 1%;
color: orange;
}
</style>
</head>
<body>
<div class="container">
<h1>Today's Restaurant Suggestions</h1>
<p id="currentDate"></p>
<div id="restaurants"></div>
<div class="bonus-container">
<h3 id="bonusHeader">Bonus Suggestions</h3>
<div id="bonusRestaurants"></div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>