Spaces:
Running
Running
File size: 1,771 Bytes
1960505 255efa8 1960505 255efa8 1960505 255efa8 1960505 255efa8 1960505 255efa8 1960505 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
<!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>
|