osworld_tasks_files / index.html
ukasuri's picture
upload index
7233796 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Holiday Party Invitation</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
color: #333;
margin: 0;
padding: 0;
}
.email-container {
width: 100%;
background-color: #ffffff;
margin: 0 auto;
padding: 20px;
max-width: 600px;
box-sizing: border-box;
border: 1px solid #ddd;
border-radius: 8px;
}
.header {
text-align: center;
background-color: #4CAF50;
color: #ffffff;
padding: 20px;
border-radius: 8px 8px 0 0;
}
.header h1 {
margin: 0;
font-size: 2.5em;
}
.content {
padding: 20px;
}
.content p {
font-size: 1.1em;
line-height: 1.6;
}
.button {
display: inline-block;
background-color: #4CAF50;
color: #ffffff;
padding: 15px 30px;
text-decoration: none;
font-size: 1.2em;
border-radius: 5px;
margin-top: 20px;
}
.footer {
text-align: center;
font-size: 0.8em;
color: #777;
margin-top: 30px;
}
</style>
</head>
<body>
<div class="email-container">
<div class="header">
<h1>Holiday Party RSVP</h1>
</div>
<div class="content">
<p>Dear [Team],</p>
<p>We are excited to invite you to our upcoming <strong>Holiday Party</strong>! It's going to be a great evening filled with festivities, food, and fun.</p>
<p><strong>Date:</strong> December 15, 2025</p>
<p><strong>Time:</strong> 6:00 PM</p>
<p><strong>Location:</strong> 123 Main St, Anytown, USA</p>
<p>Please let us know if you'll be attending by clicking the RSVP button below.</p>
<a href="[RSVP Link]" class="button">RSVP Now</a>
</div>
<div class="footer">
<p>If you have any questions, feel free to reach out to us at team-all@organization.org.</p>
<p>We hope to see you there!</p>
</div>
</div>
</body>
</html>