forked from jaiyankargupta/OCD-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevents.html
More file actions
89 lines (87 loc) · 2.7 KB
/
events.html
File metadata and controls
89 lines (87 loc) · 2.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Upcoming Events - Open Code Developers (OCD)</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
header {
background-color: #333;
color: white;
padding: 10px 0;
text-align: center;
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
}
.event-list {
list-style: none;
padding: 0;
}
.event-list li {
background: white;
margin: 20px 0;
padding: 20px;
border: 1px solid #ddd;
border-radius: 5px;
}
.event-title {
font-size: 1.5em;
margin-bottom: 10px;
}
.event-date {
color: #888;
margin-bottom: 10px;
}
footer {
background-color: #333;
color: white;
text-align: center;
padding: 10px 0;
position: fixed;
width: 100%;
bottom: 0;
}
</style>
</head>
<body>
<header>
<div class="container">
<h1>Upcoming Events</h1>
<p>Open Code Developers (OCD)</p>
</div>
</header>
<div class="container">
<ul class="event-list">
<li>
<div class="event-title">Event 1: Introduction to Open Source</div>
<div class="event-date">Date: August 10, 2024</div>
<p>Join us for an introduction to the world of open source software. Learn how to contribute and the benefits of being part of the open source community.</p>
</li>
<li>
<div class="event-title">Event 2: Hackathon</div>
<div class="event-date">Date: September 5, 2024</div>
<p>Participate in our hackathon and collaborate with fellow developers to build amazing projects. Prizes for the best projects!</p>
</li>
<li>
<div class="event-title">Event 3: Workshop on Git & GitHub</div>
<div class="event-date">Date: October 15, 2024</div>
<p>Learn the essentials of version control with Git and how to use GitHub for collaboration and project management.</p>
</li>
</ul>
</div>
<footer>
<div class="container">
<p>© 2024 Open Code Developers (OCD). All rights reserved.</p>
</div>
</footer>
</body>
</html>