-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUPCOMING_EVENTS.html
167 lines (149 loc) · 4.83 KB
/
UPCOMING_EVENTS.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Upcoming Events</title>
<style>
/* General Styles */
body {
margin: 0;
font-family: Arial, sans-serif;
background-image: url('Logos/background7.jpeg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
/* Section Title */
.section-title {
font-size: 36px;
font-weight: bold;
text-align: center;
margin-bottom: 30px;
color: #fff;
}
/* Event Cards */
.events-container {
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: center;
}
.event-card {
background-color: rgba(255, 255, 255, 0.8);
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
overflow: hidden;
width: 300px;
display: flex;
flex-direction: column;
}
.event-card:hover {
transform: translateY(-5px);
}
/* Event Info */
.event-info {
padding: 20px;
}
.event-info h2 {
font-size: 24px;
font-weight: bold;
margin-bottom: 10px;
color: #333;
}
.event-info p {
font-size: 16px;
margin-bottom: 20px;
color: #333;
}
/* Date and Time */
.date-time {
background-color: #6b1aff;
color: #fff;
padding: 10px;
text-align: center;
margin-top: auto;
width: 100%;
box-sizing: border-box;
}
.date-time p {
margin: 5px 0;
}
</style>
</head>
<body>
<div class="container">
<h1 class="section-title">All Events</h1>
<div class="events-container">
<!-- Event Cards -->
<div class="event-card">
<div class="event-info">
<h2>Competitive Programming</h2>
<p>Participants will tackle with interesting and challenging questions.</p>
</div>
<div class="date-time">
<p>Date: June 8, 2024</p>
<p>Time: 02:50PM</p>
</div>
</div>
<div class="event-card">
<div class="event-info">
<h2>Introduction to CV</h2>
<p>Introduction to the field of Computer Vision and Its importance in field of Artificial Intelligence</p>
</div>
<div class="date-time">
<p>Date: June 15, 2024</p>
<p>Time: 02:50 PM </p>
</div>
</div>
<div class="event-card">
<div class="event-info">
<h2>Krypto Sleuth</h2>
<p>Participants will tackle a range of cryptography puzzles, from classic to modern techniques.</p>
</div>
<div class="date-time">
<p>Date: May 16 - June 6, 2024</p>
<p>Time: TBD</p>
</div>
</div>
<div class="event-card">
<div class="event-info">
<h2>Git and GitHub Workshop</h2>
<p>Introduction to Git & GitHub using GitHub Desktop, GitBash, for all.</p>
</div>
<div class="date-time">
<p>Date: June 1, 2024</p>
<p>Time: TBD</p>
</div>
</div>
<div class="event-card">
<div class="event-info">
<h2>Holidays with Code</h2>
<p>This event will be a series of three tests of varied levels.</p>
</div>
<div class="date-time">
<p>Date: May 15, 20, 23, 2024</p>
<p>Time: TBD</p>
</div>
</div>
<div class="event-card">
<div class="event-info">
<h2>Member Selection Test</h2>
<p>Selection test for new members. For 2nd, 4th, and 6th Semester.</p>
</div>
<div class="date-time">
<p>Date: May 18, 2024</p>
<p>Time: TBD</p>
</div>
</div>
<!-- More event cards here -->
</div>
</div>
</body>
</html>