-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEVENT.HTML
More file actions
115 lines (101 loc) · 2.66 KB
/
EVENT.HTML
File metadata and controls
115 lines (101 loc) · 2.66 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html lang="en" itemscope itemtype="http://schema.org/Organization">
<head>
<meta charset="UTF-8">
<title>Darren's Event Invite</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap" rel="stylesheet">
<style>
body {
margin: 0;
font-family: 'Playfair Display', serif;
background-color: #0d1b2a;
color: #f0f0f0;
}
.container {
max-width: 700px;
margin: auto;
padding: 30px;
background: #1b263b;
border-radius: 10px;
box-shadow: 0 0 20px #000;
}
h1, h2 {
text-align: center;
color: #a8dadc;
}
p, ul {
font-size: 1.1em;
line-height: 1.5;
}
.menu {
background: #415a77;
padding: 20px;
border-radius: 8px;
margin-top: 20px;
}
.menu h3 {
color: #ffffff;
}
ul {
list-style: none;
padding: 0;
}
ul li::before {
content: "• ";
color: #89c2d9;
}
.rsvp-button {
display: block;
margin: 30px auto 10px auto;
padding: 12px 20px;
background-color: #0077b6;
color: white;
text-decoration: none;
font-weight: bold;
border-radius: 8px;
text-align: center;
}
.rsvp-button:hover {
background-color: #023e8a;
}
footer {
text-align: center;
color: #ccc;
margin-top: 40px;
font-size: 0.9em;
}
</style>
</head>
<body>
<div class="container">
<h1>Darren's 30th Birthday</h1>
<h2>You're Invited!</h2>
<p><strong>Where:</strong> Hall at Plumstead's Cricket Club</p>
<p><strong>When:</strong> Saturday, July 20th, 2025 – 6:00 PM</p>
<p>Join us for a night of celebration with <strong>live music</strong> and an <strong>open bar</strong>!</p>
<div class="menu">
<h3>Set Menu</h3>
<p><strong>Starters:</strong></p>
<ul>
<li>Creamy mushroom soup with bread</li>
<li>Stuffed garlic mushrooms</li>
</ul>
<p><strong>Main Course:</strong></p>
<ul>
<li>Steak with veggies on the side</li>
<li>Chicken with veggies on the side</li>
</ul>
<p><strong>Desserts:</strong></p>
<ul>
<li>Malva pudding</li>
<li>Cheesecake</li>
</ul>
</div>
<a href="mailto:youremail@example.com?subject=RSVP%20to%20Darren's%2030th" class="rsvp-button">RSVP Now</a>
<footer>
© 2025 Darren Lee Heuvel
</footer>
</div>
</body>
</html>