-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDraft1
More file actions
56 lines (56 loc) · 1.39 KB
/
Draft1
File metadata and controls
56 lines (56 loc) · 1.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Wedding Invitation</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
font-family: "Georgia", serif;
text-align: center;
background: url("https://i.imgur.com/Uk4Kj1N.jpg") no-repeat center center/cover;
color: #333;
margin: 0;
padding: 0;
}
.overlay {
background: rgba(255,255,255,0.8);
padding: 40px;
margin: 60px auto;
max-width: 600px;
border-radius: 15px;
box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
h1 {
font-size: 2.5em;
color: #b02a37;
}
h2 {
font-size: 1.5em;
margin-bottom: 20px;
}
p { font-size: 1.2em; }
.btn {
display: inline-block;
background: #b02a37;
color: white;
padding: 12px 25px;
margin-top: 20px;
border-radius: 25px;
text-decoration: none;
font-weight: bold;
}
.btn:hover { background: #8a1f2b; }
</style>
</head>
<body>
<div class="overlay">
<h1>💍 You're Invited!</h1>
<h2>Anna & James</h2>
<p>We are delighted to invite you to celebrate our wedding.</p>
<p><strong>Date:</strong> 15th November 2025</p>
<p><strong>Venue:</strong> Rose Garden Hall, New York</p>
<a href="https://forms.gle/your-rsvp-link" class="btn">RSVP Here</a>
</div>
</body>
</html>