-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
191 lines (165 loc) Β· 4.19 KB
/
index.html
File metadata and controls
191 lines (165 loc) Β· 4.19 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Arun's event Invite</title>
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@400;700&display=swap" rel="stylesheet">
<style>
* {
box-sizing: border-box;
}
body {
font-family: 'Quicksand', sans-serif;
background: linear-gradient(to right, rgb(255, 236, 210), rgb(252, 182, 159));
padding: 40px 20px;
color: rgb(51, 51, 51);
}
.container {
max-width: 800px;
margin: auto;
background-color: white;
padding: 30px;
border-radius: 16px;
box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}
h1 {
text-align: center;
color: rgb(255, 111, 97);
font-size: 2.5em;
margin-bottom: 10px;
}
.cake {
text-align: center;
font-size: 2.5em;
margin-bottom: 20px;
}
.info p {
font-size: 1.1em;
margin: 12px 0;
}
.image-section {
text-align: center;
margin: 25px 0;
}
.image-section img {
width: 100%;
max-width: 600px;
border-radius: 12px;
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}
.guest-list {
background-color: rgb(255, 244, 230)
;
padding: 20px;
margin-top: 30px;
border-left: 6px solid rgb(255, 111, 97);
border-radius: 10px;
}
.guest-list h2 {
color: rgb(211, 84, 0);
margin-bottom: 10px;
}
.guest-list ul {
list-style-type: circle;
padding-left: 20px;
font-size: 1em;
}
.rsvp-button {
display: block;
margin: 35px auto 10px;
padding: 14px 28px;
background-color: rgb(40, 167, 69)
;
color: white;
font-size: 1.1em;
border: none;
border-radius: 10px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.rsvp-button:hover {
background-color: rgb(33, 136, 56);
}
.message-box {
margin-top: 40px;
padding: 20px;
background-color: rgb(232, 248, 245);
border-radius: 12px;
}
.message-box h2 {
color: #117a65;
margin-bottom: 10px;
}
.message-box textarea {
width: 100%;
height: 100px;
padding: 10px;
font-size: 1em;
border-radius: 6px;
border: 1px solid #ccc;
resize: none;
}
.send-button {
margin-top: 10px;
padding: 10px 20px;
background-color: rgb(52, 152, 219);
color: white;
font-size: 1em;
border: none;
border-radius: 8px;
cursor: pointer;
}
.send-button:hover {
background-color: rgb(41, 128, 185)
;
}
footer {
text-align: center;
margin-top: 40px;
color: rgb(102, 102, 102);
font-size: 0.9em;
}
</style>
</head>
<body>
<div class="container">
<div class="cake">π</div>
<h1>You're Invited to My Birthday Bash!</h1>
<div class="info">
<p><strong>π What:</strong> A fun birthday celebration</p>
<p><strong>π
When:</strong> July 16, 2025 at 6:00 PM</p>
<p><strong>π Where:</strong> Unitβ―7 &β―8, The Waters Edge
Brindley Place
Broad Street
Birmingham
B1β―2HP</p>
<p><strong>π Details:</strong> Join us for games, music, snacks, and good vibes!</p>
</div>
<div class="image-section">
<img src="https://cdn.pixabay.com/photo/2016/11/29/03/53/birthday-1867469_1280.jpg" alt="Birthday celebration image">
</div>
<div class="guest-list">
<h2>π Guest List</h2>
<ul>
<li>Harini</li>
<li>Naveen</li>
<li>Midhuna</li>
<li>Appu</li>
<li>Pranavu</li>
<li>Buvaneshwari</li>
</ul>
</div>
<button class="rsvp-button" onclick="alert('Thanks for RSVPing! π')">π RSVP Now</button>
<div class="message-box">
<h2>π Leave a Birthday Message</h2>
<textarea placeholder="Write your greeting..."></textarea>
<br>
<button class="send-button" onclick="alert('Your message has been sent! π')">Send Greeting</button>
</div>
<footer>
Made with β€οΈ by Arunkumar β Let's celebrate together!
</footer>
</div>
</body>
</html>