-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
335 lines (324 loc) · 15.8 KB
/
index.html
File metadata and controls
335 lines (324 loc) · 15.8 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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GDG Amity University Bangalore</title>
<link rel="stylesheet" href="style.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" rel="stylesheet">
</head>
<body>
<!-- First line after body tag -->
<!-- Header Section -->
<header>
<div class="container">
<nav class="navbar">
<div class="logo">
<div class="logo-icon">
<i class="fab fa-google"></i>
<span class="logo-text">GDG</span>
</div>
<span>Amity University</span>
</div>
<ul class="nav-links">
<li><a href="#" class="active">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#events">Events</a></li>
<li><a href="#team">Team</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
<div class="hamburger">
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
</div>
</nav>
</div>
</header>
<!-- Hero Section -->
<section class="hero">
<div class="container">
<div class="hero-content">
<div class="animated-text">
<div class="line">Google Developer Group</div>
<div class="line">Amity University Bangalore</div>
</div>
<div class="hero-tagline">
<span class="tag">Learn</span>
<span class="tag-divider"><i class="fas fa-circle"></i></span>
<span class="tag">Connect</span>
<span class="tag-divider"><i class="fas fa-circle"></i></span>
<span class="tag">Build</span>
</div>
<div class="hero-buttons">
<a href="#events" class="btn btn-primary"><i class="fas fa-calendar-alt"></i> Explore Events</a>
<a href="#join" class="btn btn-secondary"><i class="fas fa-users"></i> Join Community</a>
</div>
</div>
<div class="hero-decoration">
<div class="circle circle-1"></div>
<div class="circle circle-2"></div>
<div class="circle circle-3"></div>
<div class="circle circle-4"></div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="about">
<div class="container">
<h2 class="section-title">About GDG Amity</h2>
<div class="about-content">
<div class="about-text">
<p>Google Developer Group (GDG) at Amity University Bangalore is a community of passionate students, developers, and tech enthusiasts who come together to learn and share knowledge about Google's technologies and beyond.</p>
<p>Our mission is to create a vibrant tech ecosystem within the campus, providing opportunities for learning, networking, and building innovative solutions to real-world problems.</p>
</div>
<div class="about-stats">
<div class="stat-item">
<div class="stat-number">500+</div>
<div class="stat-label">Community Members</div>
</div>
<div class="stat-item">
<div class="stat-number">20+</div>
<div class="stat-label">Events Hosted</div>
</div>
<div class="stat-item">
<div class="stat-number">10+</div>
<div class="stat-label">Tech Partners</div>
</div>
</div>
</div>
</div>
</section>
<!-- Events Section -->
<section id="events" class="events">
<div class="container">
<h2 class="section-title">Our Events</h2>
<p class="section-subtitle">Explore our extremelyyy exciting events and workshops</p>
<div class="events-grid">
<div class="event-card">
<div class="event-icon">
<i class="fas fa-brain"></i>
</div>
<div class="event-content">
<div class="event-header">
<h3>Build with AI</h3>
<div class="event-badge">Advanced</div>
</div>
<p>Learn to build and deploy AI-powered applications using Google's ML tools and frameworks.</p>
<div class="event-details">
<span><i class="far fa-calendar"></i> Monthly</span>
<span><i class="far fa-clock"></i> 3 Hours</span>
</div>
<a href="buildai.html" class="btn-event">Learn More <i class="fas fa-arrow-right"></i></a>
</div>
</div>
<div class="event-card">
<div class="event-icon">
<i class="fab fa-github"></i>
</div>
<div class="event-content">
<div class="event-header">
<h3>GitHub Workshop</h3>
<div class="event-badge">Beginner</div>
</div>
<p>Master version control and collaborative development with GitHub's powerful features.</p>
<div class="event-details">
<span><i class="far fa-calendar"></i> Bi-weekly</span>
<span><i class="far fa-clock"></i> 2 Hours</span>
</div>
<a href="git_workshop.html" class="btn-event">Learn More <i class="fas fa-arrow-right"></i></a>
</div>
</div>
<div class="event-card">
<div class="event-icon">
<i class="fas fa-link"></i>
</div>
<div class="event-content">
<div class="event-header">
<h3>Blockchain Development</h3>
<div class="event-badge">Intermediate</div>
</div>
<p>Dive into the world of blockchain and learn to build decentralized applications.</p>
<div class="event-details">
<span><i class="far fa-calendar"></i> Quarterly</span>
<span><i class="far fa-clock"></i> 4 Hours</span>
</div>
<a href="Blockchain.html" class="btn-event">Learn More <i class="fas fa-arrow-right"></i></a>
</div>
</div>
<div class="event-card">
<div class="event-icon">
<i class="fas fa-microchip"></i>
</div>
<div class="event-content">
<div class="event-header">
<h3>IoT Workshop</h3>
<div class="event-badge">Intermediate</div>
</div>
<p>Connect and program smart devices in this hands-on Internet of Things workshop.</p>
<div class="event-details">
<span><i class="far fa-calendar"></i> Monthly</span>
<span><i class="far fa-clock"></i> 3 Hours</span>
</div>
<a href="iot.html" class="btn-event">Learn More <i class="fas fa-arrow-right"></i></a>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section id="testimonials" class="testimonials">
<div class="container">
<h2 class="section-title">What Our Members Say</h2>
<div class="testimonials-grid">
<div class="testimonial-card">
<div class="testimonial-quote">
<i class="fas fa-quote-left"></i>
<p>Being part of GDG Amity has helped me grow my network and learn new technologies in a fun way!</p>
</div>
<div class="testimonial-author">
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Member Photo">
<span>Rahul S.</span>
<span class="author-role">Student Developer</span>
</div>
</div>
<div class="testimonial-card">
<div class="testimonial-quote">
<i class="fas fa-quote-left"></i>
<p>The workshops are super interactive and the community is very supportive. Highly recommended!</p>
</div>
<div class="testimonial-author">
<img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Member Photo">
<span>Ananya P.</span>
<span class="author-role">Tech Enthusiast</span>
</div>
</div>
<div class="testimonial-card">
<div class="testimonial-quote">
<i class="fas fa-quote-left"></i>
<p>I got to work on real projects and collaborate with amazing people. GDG Amity is the best!</p>
</div>
<div class="testimonial-author">
<img src="https://randomuser.me/api/portraits/men/65.jpg" alt="Member Photo">
<span>Vikram T.</span>
<span class="author-role">Core Team Member</span>
</div>
</div>
</div>
</div>
</section>
<!-- Partners Section -->
<section id="partners" class="partners">
<div class="container">
<h2 class="section-title">Our Partners</h2>
<div class="partners-logos">
<a href="https://developers.google.com/" target="_blank" class="partner-logo">
<img src="https://upload.wikimedia.org/wikipedia/commons/2/2f/Google_2015_logo.svg" alt="Google">
</a>
<a href="https://github.com/" target="_blank" class="partner-logo">
<img src="https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png" alt="GitHub">
</a>
<a href="https://www.blockchain.com/" target="_blank" class="partner-logo">
<img src="https://upload.wikimedia.org/wikipedia/commons/6/6a/Blockchain.com_logo.png" alt="Blockchain.com">
</a>
<a href="https://www.iotforall.com/" target="_blank" class="partner-logo">
<img src="https://www.iotforall.com/wp-content/uploads/2019/06/iot-for-all-logo.png" alt="IoT For All">
</a>
</div>
</div>
</section>
<!-- Join Us Section -->
<section id="join" class="join-us">
<div class="container">
<div class="join-content">
<div class="join-header">
<div class="join-icon">
<i class="fas fa-rocket"></i>
</div>
<h2>Join Our Tech Community</h2>
</div>
<div class="join-description">
<p>Be part of an exciting journey of learning, innovation, and growth. Join GDG Amity University Bangalore today!</p>
<div class="join-benefits">
<div class="benefit"><i class="fas fa-check-circle"></i> Access to exclusive workshops</div>
<div class="benefit"><i class="fas fa-check-circle"></i> Networking with industry experts</div>
<div class="benefit"><i class="fas fa-check-circle"></i> Hands-on project experience</div>
</div>
</div>
<form class="join-form">
<div class="form-group">
<i class="far fa-envelope"></i>
<input type="email" placeholder="Enter your email" required>
</div>
<button type="submit" class="btn btn-primary">Subscribe <i class="fas fa-paper-plane"></i></button>
</form>
<div class="social-links">
<a href="#" class="social-link instagram"><i class="fab fa-instagram"></i></a>
<a href="#" class="social-link linkedin"><i class="fab fa-linkedin-in"></i></a>
<a href="#" class="social-link twitter"><i class="fab fa-twitter"></i></a>
<a href="#" class="social-link github"><i class="fab fa-github"></i></a>
</div>
</div>
<div class="dots-decoration">
<div class="dot dot1"></div>
<div class="dot dot2"></div>
<div class="dot dot3"></div>
<div class="dot dot4"></div>
<div class="dot dot5"></div>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="container">
<div class="footer-content">
<div class="footer-logo">
<div class="logo-icon footer-logo-icon">
<i class="fab fa-google"></i>
<span class="logo-text">GDG</span>
</div>
<span>Amity University</span>
</div>
<div class="footer-links">
<div class="footer-column">
<h3>Quick Links</h3>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#events">Events</a></li>
<li><a href="#team">Team</a></li>
</ul>
</div>
<div class="footer-column">
<h3>Resources</h3>
<ul>
<li><a href="#">Blog</a></li>
<li><a href="#">Projects</a></li>
<li><a href="#">Gallery</a></li>
<li><a href="#">FAQs</a></li>
</ul>
</div>
<div class="footer-column">
<h3>Contact</h3>
<ul>
<li><i class="fas fa-map-marker-alt"></i> Amity University, Bangalore</li>
<li><i class="fas fa-envelope"></i> gdg.amity@example.com</li>
<li><i class="fas fa-phone"></i> +91 1234567890</li>
</ul>
</div>
</div>
</div>
<div class="copyright">
<p>© 2025 GDG Amity University Bangalore. All rights reserved.</p>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
document.querySelector('.hamburger').addEventListener('click', function() {
document.querySelector('.nav-links').classList.toggle('active');
this.classList.toggle('active');
});
</script>
</body>
</html>