-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevents.html
163 lines (162 loc) · 3.56 KB
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" type="image/x-icon" href="./images/favicon.png" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"
integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link rel="stylesheet" href="events.css" />
<title>Events</title>
</head>
<body>
<section id="events-page" class="global-padding">
<h1 class="title">Our Events</h1>
</section>
<section id="events-table" class="global-padding">
<table>
<tr>
<th>ID</th>
<th>EVENT</th>
<th>NO. OF PARTICIPANTS</th>
<th>DATE</th>
</tr>
<tr>
<td>1</td>
<td>Inceptra 22</td>
<td>-</td>
<td>28/05/2022 - 29/05/2022</td>
</tr>
<tr>
<td>2</td>
<td>Eureka</td>
<td>-</td>
<td>05/05/2022 - 07/05/2022</td>
</tr>
<tr>
<td>3</td>
<td>Project Expo</td>
<td>-</td>
<td>3/11/2022</td>
</tr>
<tr>
<td>4</td>
<td>SALT (Startup Awareness and Leadership Training)</td>
<td>30</td>
<td>29/01/2022 - 30/01/2022</td>
</tr>
<tr>
<td>5</td>
<td>Challenge X 2021</td>
<td>71</td>
<td>26/12/2021 - 01/01/2022</td>
</tr>
<tr>
<td>6</td>
<td>Catalyst Launchpad</td>
<td>19</td>
<td>11/12/2021 - 12/12/2021</td>
</tr>
<tr>
<td>7</td>
<td>HackWeek</td>
<td>24</td>
<td>01/12/2021 - 07/12/2021</td>
</tr>
<tr>
<td>8</td>
<td>Anjana's Life Recipe</td>
<td>80</td>
<td>11/30/2021</td>
</tr>
<tr>
<td>9</td>
<td>Journey to a Startup</td>
<td>150</td>
<td>11/27/2021</td>
</tr>
<tr>
<td>10</td>
<td>Introduction to Python Bootcamp SDP</td>
<td>57</td>
<td>15/11/2021 - 22/11/2021</td>
</tr>
<tr>
<td>11</td>
<td>Content Writing Workshop</td>
<td>59</td>
<td>11/13/2021</td>
</tr>
<tr>
<td>12</td>
<td>Flutter Bootcamp</td>
<td>126</td>
<td>09/11/2021 - 13/11/2021</td>
</tr>
<tr>
<td>13</td>
<td>Personal branding by Gaurav Nandu</td>
<td>104</td>
<td>06/11/2021</td>
</tr>
<tr>
<td>14</td>
<td>Project Ideation: Innovation and startup by Ajay Basil</td>
<td>84</td>
<td>20/10/2021</td>
</tr>
<tr>
<td>15</td>
<td>Creativity Conclave Visual Eyes by Amarnath</td>
<td>73</td>
<td>12/10/2021</td>
</tr>
<tr>
<td>16</td>
<td>3 day Ideathon Relevent 2021</td>
<td>51</td>
<td>01/10/2021</td>
</tr>
<tr>
<td>17</td>
<td>iTalk on Start with Why</td>
<td>50</td>
<td>02/10/2021</td>
</tr>
<tr>
<td>18</td>
<td>iTalk on Innovators Life Cycle</td>
<td>50</td>
<td>01/10/2021</td>
</tr>
<tr>
<td>20</td>
<td>Inceptra'21</td>
<td>120</td>
<td>30/07/2021</td>
</tr>
<tr>
<td>21</td>
<td>
Talk session on Incubation and business opportunities for students
and faculty members by Vishal B Kadam
</td>
<td>139</td>
<td>6/12/2021</td>
</tr>
<tr>
<td>22</td>
<td>Talk session on - Financial Literacy for the Youth</td>
<td>175</td>
<td>08/06/2021</td>
</tr>
</table>
</section>
</body>
</html>