-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevents.html
More file actions
174 lines (138 loc) · 3.08 KB
/
Copy pathevents.html
File metadata and controls
174 lines (138 loc) · 3.08 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
<!DOCTYPE html>
<html>
<head>
<title>Nandha College of Technology - Campus Events</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body{
margin:0;
font-family:'Segoe UI',sans-serif;
background:linear-gradient(135deg,#141e30,#243b55);
color:white;
text-align:center;
}
/* Back Button */
.top-back-btn{
position:absolute;
top:20px;
left:20px;
}
.top-back-btn button{
padding:8px 18px;
background:#ffcc00;
border:none;
border-radius:25px;
font-weight:bold;
cursor:pointer;
}
.top-back-btn button:hover{
background:#ffaa00;
}
/* Header */
.header{
padding:60px 20px 10px;
font-size:32px;
font-weight:bold;
}
.sub-header{
font-size:18px;
margin-bottom:30px;
color:#ddd;
}
/* Section title */
.section-title{
margin-top:40px;
font-size:24px;
}
/* Gallery */
.gallery{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:25px;
max-width:900px;
margin:auto;
padding:20px;
}
/* Cards */
.card{
background:white;
border-radius:15px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.4);
transition:0.3s;
}
.card:hover{
transform:translateY(-8px);
}
.card img{
width:100%;
height:220px;
object-fit:cover;
}
.card p{
color:black;
padding:12px;
font-weight:500;
}
/* Footer */
.footer{
margin-top:40px;
padding:20px;
background:rgba(0,0,0,0.3);
}
</style>
</head>
<body>
<!-- Back Button -->
<div class="top-back-btn">
<a href="chatbot.html">
<button>← Back to Chatbot</button>
</a>
</div>
<div class="header">
Nandha College of Technology
</div>
<div class="sub-header">
Campus Events & Student Activities
</div>
<!-- Technical Events -->
<div class="section-title">
Technical Events
</div>
<div class="gallery">
<div class="card">
<img src="https://anurag.ac.in/wp-content/uploads/2024/08/IT-Tech-Fest.jpg">
<p>National Level Technical Symposium</p>
</div>
<div class="card">
<img src="https://images.unsplash.com/photo-1531482615713-2afd69097998">
<p>Hackathon & Coding Competition</p>
</div>
<div class="card">
<img src="https://images.unsplash.com/photo-1555949963-aa79dcee981c">
<p>Project Expo & Innovation Showcase</p>
</div>
</div>
<!-- Non Technical Events -->
<div class="section-title">
Non-Technical Events
</div>
<div class="gallery">
<div class="card">
<img src="https://images.unsplash.com/photo-1506157786151-b8491531f063">
<p>Annual Cultural Festival</p>
</div>
<div class="card">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ_rfKLaJGeHmC5ot6wdCD5k20BFFiDgd132Q&s">
<p>Music, Dance & Talent Shows</p>
</div>
<div class="card">
<img src="https://cdn.plus.fifa.com/images/public/cms/84/ff/35/13/84ff3513-cc6a-4785-baf3-088b1c1ceaf7.jpg?width=1200&height=630">
<p>Sports & Fun Competitions</p>
</div>
</div>
<div class="footer">
© 2026 Nandha College of Technology | Campus Events
</div>
</body>
</html>