ALI-Lunch-Menu / index.html
bibekyess's picture
Merged remote Readme
1960505
raw
history blame
1.04 kB
<!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);
}
h1 {
color: #333;
}
.restaurant {
font-size: 1.2em;
margin: 10px 0;
}
</style>
</head>
<body>
<div class="container">
<h1>Today's Restaurant Suggestions</h1>
<p id="currentDate"></p>
<div id="restaurants"></div>
</div>
<script src="script.js"></script>
</body>
</html>