-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (56 loc) · 1.39 KB
/
index.html
File metadata and controls
57 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
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Summer Coding Workshop 2025</title>
<style>
body {
font-family: Arial, sans-serif;
background: #f0f8ff;
padding: 20px;
color: #333;
}
.invite {
max-width: 600px;
margin: auto;
background: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
h1 {
color: #ff9800;
}
.rsvp-button {
display: inline-block;
padding: 10px 20px;
background: #4caf50;
color: white;
text-decoration: none;
border-radius: 5px;
margin-top: 10px;
}
.guests {
margin-top: 20px;
}
</style>
</head>
<body>
<div class="invite">
<h1>Code your Future Summer Workshop 2025</h1>
<p><strong>Date & Time:</strong> Saturday, August 16, 2025 — 10:00 AM to 4:00 PM</p>
<p><strong>Location:</strong> Community Tech Hub, 123 Code Street, London</p>
<p>Join us for a hands-on workshop where you'll build your first Application. Beginners welcome!</p>
<a href="#" class="rsvp-button">Register Now</a>
<div class="guests">
<h2>Attending:</h2>
<ul>
<li>CYF Mentors</li>
<li>Tech Enthusiasts</li>
<li>Business Aspirants</li>
</ul>
</div>
</div>
</body>
</html>