-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (46 loc) · 1.15 KB
/
index.html
File metadata and controls
50 lines (46 loc) · 1.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Gina's Graduation Dinner</title>
<style>
body {
background-color: #fef6e4;
font-family: 'Arial', sans-serif;
color: #001858;
text-align: center;
padding: 20px;
}
h1 {
font-size: 2.5rem;
color: #f582ae;
}
p {
font-size: 1.2rem;
}
.invite {
background-color: #f3d2c1;
border: 2px solid #8bd3dd;
border-radius: 10px;
padding: 20px;
max-width: 600px;
margin: 30px auto;
}
.rsvp {
font-weight: bold;
color: #ffb703;
}
</style>
</head>
<body>
<div class="invite">
<h1>You're Invited to Gina's Graduation Dinner! 🎓🍽️</h1>
<p>Come celebrate Gina’s big achievement with good food and great company!</p>
<p><strong>Date:</strong> Thursday, July 24, 2025</p>
<p><strong>Time:</strong> 7:00 PM</p>
<p><strong>Location:</strong> Peter Pizzeria, Nottingham</p>
<p class="rsvp">Please RSVP by July 20 to georginaievarogers@gmail.com</p>
</div>
</body>
</html>