ukasuri commited on
Commit
7233796
·
verified ·
1 Parent(s): f13a6bc

upload index

Browse files
Files changed (1) hide show
  1. index.html +81 -0
index.html ADDED
@@ -0,0 +1,81 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Holiday Party Invitation</title>
7
+ <style>
8
+ body {
9
+ font-family: Arial, sans-serif;
10
+ background-color: #f4f4f4;
11
+ color: #333;
12
+ margin: 0;
13
+ padding: 0;
14
+ }
15
+ .email-container {
16
+ width: 100%;
17
+ background-color: #ffffff;
18
+ margin: 0 auto;
19
+ padding: 20px;
20
+ max-width: 600px;
21
+ box-sizing: border-box;
22
+ border: 1px solid #ddd;
23
+ border-radius: 8px;
24
+ }
25
+ .header {
26
+ text-align: center;
27
+ background-color: #4CAF50;
28
+ color: #ffffff;
29
+ padding: 20px;
30
+ border-radius: 8px 8px 0 0;
31
+ }
32
+ .header h1 {
33
+ margin: 0;
34
+ font-size: 2.5em;
35
+ }
36
+ .content {
37
+ padding: 20px;
38
+ }
39
+ .content p {
40
+ font-size: 1.1em;
41
+ line-height: 1.6;
42
+ }
43
+ .button {
44
+ display: inline-block;
45
+ background-color: #4CAF50;
46
+ color: #ffffff;
47
+ padding: 15px 30px;
48
+ text-decoration: none;
49
+ font-size: 1.2em;
50
+ border-radius: 5px;
51
+ margin-top: 20px;
52
+ }
53
+ .footer {
54
+ text-align: center;
55
+ font-size: 0.8em;
56
+ color: #777;
57
+ margin-top: 30px;
58
+ }
59
+ </style>
60
+ </head>
61
+ <body>
62
+ <div class="email-container">
63
+ <div class="header">
64
+ <h1>Holiday Party RSVP</h1>
65
+ </div>
66
+ <div class="content">
67
+ <p>Dear [Team],</p>
68
+ <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>
69
+ <p><strong>Date:</strong> December 15, 2025</p>
70
+ <p><strong>Time:</strong> 6:00 PM</p>
71
+ <p><strong>Location:</strong> 123 Main St, Anytown, USA</p>
72
+ <p>Please let us know if you'll be attending by clicking the RSVP button below.</p>
73
+ <a href="[RSVP Link]" class="button">RSVP Now</a>
74
+ </div>
75
+ <div class="footer">
76
+ <p>If you have any questions, feel free to reach out to us at team-all@organization.org.</p>
77
+ <p>We hope to see you there!</p>
78
+ </div>
79
+ </div>
80
+ </body>
81
+ </html>