-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsactivities.html
More file actions
176 lines (174 loc) · 5.09 KB
/
Copy pathsactivities.html
File metadata and controls
176 lines (174 loc) · 5.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Department Activities</title>
<style>
.hody {
font-family: Arial, sans-serif;
background-color: #f7f7f7;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
h1 {
font-size: 3rem;
font-weight: 700;
color: #0e263d;
margin-top: 50px;
text-align: center;
}
h1:hover{
color: #982336;
}
table {
width: 90%;
border-collapse: collapse;
margin: 20px auto;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
background-color: #fff;
}
th, td {
padding: 12px;
text-align: left;
border-bottom: 1px solid #ddd;
}
th {
background-color: #4CAF50;
color: white;
}
tr:hover {
background-color: #f1f1f1;
}
tr:nth-child(even) {
background-color: #f9f9f9;
}
td:last-child {
text-align: center;
color: #4CAF50;
font-weight: bold;
cursor: pointer;
}
</style>
</head>
<body>
<div id="navbar"></div>
<script>
fetch('navbar.html')
.then(response => response.text())
.then(data => document.getElementById('navbar').innerHTML = data);
</script>
<div class="space" style="width: 100%; height: 100px"></div>
<div class="hody">
<h1>Department Activities</h1>
<table>
<thead>
<tr>
<th>Sl.No.</th>
<th>Academic Year</th>
<th>Event Date</th>
<th>Event Name</th>
<th>View More</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>2023 - 2024</td>
<td>24.01.2024</td>
<td>Poster Presentation Competition on the theme "Rethinking Innovation"</td>
<td>View More</td>
</tr>
<tr>
<td>2</td>
<td>2022 - 2023</td>
<td>24.10.2022</td>
<td>A Two Day Project Paper Presentation Contest</td>
<td>View More</td>
</tr>
<tr>
<td>3</td>
<td>2021 - 2022</td>
<td>12.05.2022</td>
<td>GeeksTech</td>
<td>View More</td>
</tr>
<tr>
<td>4</td>
<td>2021 - 2022</td>
<td>06.10.2021</td>
<td>Three Day Workshop on "Android App Development"</td>
<td>View More</td>
</tr>
<tr>
<td>5</td>
<td>2021 - 2022</td>
<td>29.07.2021</td>
<td>One Day Guest Lecture Program on Advanced Networking Concepts using CISCO Packet Tracer</td>
<td>View More</td>
</tr>
<tr>
<td>6</td>
<td>2020 - 2021</td>
<td>10.09.2020</td>
<td>International Webinar on Video Editing</td>
<td>View More</td>
</tr>
<tr>
<td>7</td>
<td>2019 - 2020</td>
<td>07.02.2020</td>
<td>One Day Seminar on "E-Waste Management"</td>
<td>View More</td>
</tr>
<tr>
<td>8</td>
<td>2019 - 2020</td>
<td>01.10.2019</td>
<td>Photoshop Design Contest</td>
<td>View More</td>
</tr>
<tr>
<td>9</td>
<td>2019 - 2020</td>
<td>09.08.2019</td>
<td>Quiz Competition</td>
<td>View More</td>
</tr>
<tr>
<td>10</td>
<td>2018 - 2019</td>
<td>27.03.2019</td>
<td>Software Contest Competition</td>
<td>View More</td>
</tr>
<tr>
<td>11</td>
<td>2018 - 2019</td>
<td>13.02.2019</td>
<td>A One-Day Seminar Titled "Current Trends in Information Technology"</td>
<td>View More</td>
</tr>
<tr>
<td>12</td>
<td>2018 - 2019</td>
<td>05.09.2018</td>
<td>Teacher's Day Celebration-2018</td>
<td>View More</td>
</tr>
<tr>
<td>13</td>
<td>2017 - 2018</td>
<td>13.04.2018</td>
<td>Guest Lecture on "The Power of Positive Thinking"</td>
<td>View More</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>