-
Notifications
You must be signed in to change notification settings - Fork 5
/
gcpcc-old.html
467 lines (422 loc) · 23.3 KB
/
gcpcc-old.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
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
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<style>
html {
scroll-behavior: smooth;
}
</style>
<!-- Bootstrap Min CSS -->
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<!-- Animate CSS -->
<link rel="stylesheet" href="assets/css/animate.css">
<!-- Meanmenu Min CSS -->
<link rel="stylesheet" href="assets/css/meanmenu.css">
<!-- Magnific Popup Min CSS -->
<link rel="stylesheet" href="assets/css/magnific-popup.min.css">
<!-- Owl Carousel Min CSS -->
<link rel="stylesheet" href="assets/css/owl.carousel.min.css">
<!-- Odometer CSS -->
<link rel="stylesheet" href="assets/css/odometer.css">
<!-- Slick CSS -->
<link rel="stylesheet" href="assets/css/slick.css">
<!-- Style CSS -->
<link rel="stylesheet" href="assets/css/style.css">
<!-- Responsive CSS -->
<link rel="stylesheet" href="assets/css/responsive.css">
<title>DSC KIIT</title>
<link rel="icon" type="image/png" href="assets/img/favicon.png">
</head>
<body>
<!-- Start Preloader Area -->
<div class="preloader">
<div class="spinner"></div>
</div>
<!-- End Preloader Area -->
<!-- Start Navbar Area -->
<header id="header">
<div class="startp-mobile-nav">
<div class="logo">
<a href="index.html"><img src="assets/img/dsclogo.png" alt="logo" height="40px" width="300px"></a>
</div>
</div>
<div class="startp-nav">
<div class="container">
<nav class="navbar navbar-expand-md navbar-light">
<a class="navbar-brand" href="index.html"><img src="assets/img/dsclogo.png" alt="logo" height="40px" width="300px"></a>
<div class="collapse navbar-collapse mean-menu" id="navbarSupportedContent">
<ul class="navbar-nav nav ml-auto">
<li class="nav-item"><a href="index.html" class="nav-link">Home</a></li>
<li class="nav-item"><a href="#" class="nav-link">Events<i data-feather="chevron-down"></i></a>
<ul class="dropdown_menu">
<li class="nav-item"><a href="#upcoming" class="nav-link">Upcoming</a></li>
<li class="nav-item"><a href="past.html" class="nav-link">Past</a></li>
</ul>
</li>
<!--<li class="nav-item"><a href="#tech" class="nav-link">Technologies</a></li>-->
<li class="nav-item"><a href="blog.html" class="nav-link">Blog</a></li>
<li class="nav-item"><a href="mentors.html" class="nav-link">Mentors</a></li>
<!-- <li class="nav-item"><a href="#features" class="nav-link">Features</a></li>-->
<li class="nav-item"><a href="#contact" class="nav-link">Contact</a></li>
<li class="nav-item"><a href="team.html" class="nav-link">Team</a></li>
<!-- <li class="nav-item"><a href="devexpo.html" class="nav-link">DevExpo</a></li>-->
</ul>
</div>
<div class="others-option">
<a href="#GCPCrashCourses" class="btn btn-light">GCP Crash Course</a>
</div>
<!--
<div class="others-option">
<a href="#" class="btn btn-light">Google Play</a>
<a href="#" class="btn btn-primary">Login</a>
</div>
-->
</nav>
</div>
</div>
</header>
<!-- End Navbar Area -->
<!-- Start Main Banner -->
<div class="main-banner">
<div class="d-table">
<div class="d-table-cell">
<div class="container">
<div class="row h-100 justify-content-center align-items-center">
<div class="col-lg-5">
<div class="hero-content">
<!-- <h2>Developer Student Club KIIT</h2>-->
<h3><br><b>GCP Crash Course</b></h3>
<p>Wait, it's not over yet. Finish the quests to get exciting <b>goodies</b> and <b>swags</b> from Google.
You have to finish a minimum of <b>one track</b> (i.e. 5 quests) <b>before 30th October</b> to receive the perks from Google. However, there's no stopping to learning, you can complete all three tracks!</p>
<!-- The Modal -->
<div id="myModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<div class="modal-header">
<span class="close">×</span>
</div>
<div class="modal-body">
</div>
<div class="modal-footer">
</div>
</div>
</div>
<!--modal ends-->
</div>
</div>
<a name="upcoming"></a>
<div class="col-lg-6 col-md-12 services-right-image">
<img src="assets/img/services-right-image/book-self.png" class="wow fadeInDown" data-wow-delay="0.6s" alt="book-self">
<img src="assets/img/services-right-image/box.png" class="wow fadeInUp" data-wow-delay="0.6s" alt="box">
<img src="assets/img/services-right-image/chair.png" class="wow fadeInLeft" data-wow-delay="0.6s" alt="chair">
<img src="assets/img/services-right-image/cloud.png" class="wow zoomIn" data-wow-delay="0.6s" alt="cloud">
<img src="assets/img/services-right-image/cup.png" class="wow bounceIn" data-wow-delay="0.6s" alt="cup">
<img src="assets/img/services-right-image/flower-top.png" class="wow fadeInDown" data-wow-delay="0.6s" alt="flower">
<img src="assets/img/services-right-image/head-phone.png" class="wow zoomIn" data-wow-delay="0.6s" alt="head-phone">
<img src="assets/img/services-right-image/monitor.png" class="wow fadeInUp" data-wow-delay="0.6s" alt="monitor">
<img src="assets/img/services-right-image/mug.png" class="wow rotateIn" data-wow-delay="0.6s" alt="mug">
<img src="assets/img/services-right-image/table.png" class="wow fadeInUp" data-wow-delay="0.6s" alt="table">
<img src="assets/img/services-right-image/tissue.png" class="wow zoomIn" data-wow-delay="0.6s" alt="tissue">
<img src="assets/img/services-right-image/water-bottle.png" class="wow zoomIn" data-wow-delay="0.6s" alt="water-bottle">
<img src="assets/img/services-right-image/wifi.png" class="wow fadeInLeft" data-wow-delay="0.6s" alt="wifi">
<img src="assets/img/services-right-image/cercle-shape.png" class="bg-image rotateme" alt="shape">
<img src="assets/img/services-right-image/main-pic.png" class="wow fadeInUp" data-wow-delay="0.6s" alt="main-pic">
</div>
</div>
</div>
</div>
</div>
<div class="shape1"><img src="assets/img/shape1.png" alt="shape"></div>
<div class="shape2 rotateme"><img src="assets/img/shape2.svg" alt="shape"></div>
<div class="shape3"><img src="assets/img/shape3.svg" alt="shape"></div>
<div class="shape4"><img src="assets/img/shape4.svg" alt="shape"></div>
<div class="shape5"><img src="assets/img/shape5.png" alt="shape"></div>
<div class="shape6 rotateme"><img src="assets/img/shape4.svg" alt="shape"></div>
<div class="shape7"><img src="assets/img/shape4.svg" alt="shape"></div>
<div class="shape8 rotateme"><img src="assets/img/shape2.svg" alt="shape"></div>
</div>
<!-- End Main Banner -->
<section class="boxes-area">
<div class="container">
<div class="row d-flex justify-content-center">
<div class="col-lg-6">
<div class="single-box">
<div>
<img class="top_box" src="./assets/img/events/gcpcc.jpg">
</div>
<div class="top_btn d-flex justify-content-center pt-3"><a href="http://bit.ly/gcpOctober2019" class="btn btn-primary">Register</a></div>
</div>
</div>
</div>
</div>
</section>
<!-- Start GCP Area -->
<section class="pricing-area ptb-80 bg-f9f6f6" id="GCPCrashCourses">
<div class="container">
<div class="section-title">
<a name="gcpcc"></a>
<h2>Three Exciting Tracks</h2>
<div class="bar"></div>
<p>Want to learn Application development, Data Science or Machine Learning for free with Google Cloud? Here's your chance. Complete the following tracks to learn:</p>
</div>
<div class="row">
<div class="col-lg-4 col-md-6">
<div class="pricing-table">
<div class="pricing-header">
<h3>Application Development</h3>
</div>
<div class="price">
<span>6 Hours <span>| 7 Credits</span></span>
</div>
<img src="assets/img/ad.png" height="300px" width="300px">
<div class="pricing-features">
<ol align="left">
<h6>Quests</h6>
<li class="active p-1"><a href="https://google.qwiklabs.com/quests/37?qlcampaign=6p-EDU-DSC-GCC-59">Baseline: Deploy & Develop </a></li>
<li class="active p-1"><a href="https://google.qwiklabs.com/quests/39?qlcampaign=6p-EDU-DSC-GCC-59">Websites and Web Applications</a></li>
<li class="active p-1"><a href="https://google.qwiklabs.com/quests/26?qlcampaign=6p-EDU-DSC-GCC-59">Deploying Applications</a></li>
<li class="active p-1"><a href="https://google.qwiklabs.com/quests/67?qlcampaign=6p-EDU-DSC-GCC-59">Cloud Development</a></li><li class="active p-1"><a href="https://google.qwiklabs.com/quests/54?qlcampaign=6p-EDU-DSC-GCC-59">Exploring APIs</a></li>
</ol>
</div>
<div class="pricing-footer">
<a href="https://google.qwiklabs.com/quests/37?qlcampaign=6p-EDU-DSC-GCC-59" target="_blank" class="btn btn-primary">Select Track</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="pricing-table">
<div class="pricing-header">
<h3>Data Science</h3>
</div>
<div class="price">
<span>4 Hours <span>| 5 Credits</span></span>
</div>
<img src="assets/img/ds.jpg" height="300px" width="300px">
<div class="pricing-features">
<ol align="left">
<h6>Quests</h6>
<li class="active p-1"><a href="https://google.qwiklabs.com/quests/34?qlcampaign=6p-EDU-DSC-GCC-59">Baseline: Data,ML,AI </a></li>
<li class="active p-1"><a href="https://google.qwiklabs.com/quests/55?qlcampaign=6p-EDU-DSC-GCC-59">BigQuery for Data Analysis </a></li>
<li class="active p-1"><a href="https://google.qwiklabs.com/quests/28?qlcampaign=6p-EDU-DSC-GCC-59">Scientific Data Processing </a></li>
<li class="active p-1"><a href="https://google.qwiklabs.com/quests/25?qlcampaign=6p-EDU-DSC-GCC-59">Data Engineering</a></li><li class="active p-1"><a href="https://google.qwiklabs.com/quests/43?qlcampaign=6p-EDU-DSC-GCC-59">Data Science on GCP</a></li>
</ol>
</div>
<div class="pricing-footer">
<a href="https://google.qwiklabs.com/quests/34?qlcampaign=6p-EDU-DSC-GCC-59" target="_blank" class="btn btn-primary">Select Track</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 offset-lg-0 offset-md-3">
<div class="pricing-table">
<div class="pricing-header">
<h3>Machine Learning</h3>
</div>
<div class="price">
<span>4 Hours <span>| 5 Credits</span></span>
</div>
<img src="assets/img/ml.png" height="300px" width="300px">
<div class="pricing-features">
<ol align="left">
<h6>Quests</h6>
<li class="active p-1"><a href="https://google.qwiklabs.com/quests/34?qlcampaign=6p-EDU-DSC-GCC-59">Baseline: Data,ML,AI </a></li>
<li class="active p-1"><a href="https://google.qwiklabs.com/quests/82?qlcampaign=6p-EDU-DSC-GCC-59">Intro to ML </a></li>
<li class="active p-1"><a href="https://google.qwiklabs.com/quests/71?qlcampaign=6p-EDU-DSC-GCC-59">BigQuery for ML </a></li>
<li class="active p-1"><a href="https://google.qwiklabs.com/quests/83?qlcampaign=6p-EDU-DSC-GCC-59">Intermediate ML</a></li><li class="active p-1"><a href="https://google.qwiklabs.com/quests/32?qlcampaign=6p-EDU-DSC-GCC-59">ML APIs</a></li>
</ol>
</div>
<div class="pricing-footer">
<a target="_blank" href="https://google.qwiklabs.com/quests/34?qlcampaign=6p-EDU-DSC-GCC-59" class="btn btn-primary">Select Track</a>
</div>
</div>
</div>
</div>
</div>
<div class="shape8 rotateme"><img src="assets/img/shape2.svg" alt="shape"></div>
<div class="shape2 rotateme"><img src="assets/img/shape2.svg" alt="shape"></div>
<div class="shape7"><img src="assets/img/shape4.svg" alt="shape"></div>
<div class="shape4"><img src="assets/img/shape4.svg" alt="shape"></div>
</section>
<section class="pricing-area ptb-80">
<div class="container">
<div class="section-title">
<a name="gcpcc"></a>
<h2>Nothing's Fun Without Rewards</h2>
<div class="bar"></div>
<p>Complete at least one Track in this month to be eligible for Google Cloud Goodies (Hoodies and other swags)</p>
</div>
<div class="row">
<div class="col-lg-6 col-md-6">
<div class="pricing-table">
<div class="pricing-header">
<h3>Swags</h3>
</div>
<img src="./assets/img/swag.png" class="img-fluid" style="height: 13.5em;"><br>
Hoodies, Stickers, Pen & Badges
</div>
</div>
<div class="col-lg-6 col-md-6">
<div class="pricing-table">
<div class="pricing-header">
<h3>Certifications</h3>
</div>
<img src="./assets/img/badges.png" class="img-fluid" style="height: 15em;">
</div>
</div>
</div>
</div>
<div class="shape8 rotateme"><img src="assets/img/shape2.svg" alt="shape"></div>
<div class="shape2 rotateme"><img src="assets/img/shape2.svg" alt="shape"></div>
<div class="shape7"><img src="assets/img/shape4.svg" alt="shape"></div>
<div class="shape4"><img src="assets/img/shape4.svg" alt="shape"></div>
</section>
<section class="pricing-area ptb-80 bg-f9f6f6">
<div class="container">
<div class="section-title">
<a name="gcpcc"></a>
<h2>Three Simple Rules</h2>
<div class="bar"></div>
<p>Follow these simple rules and you're golden:</p>
</div>
<div class="row">
<div class="col-lg-4 col-md-6">
<div class="pricing-table">
<div class="pricing-header">
<h3>Step 1</h3>
</div>
<img src="assets/img/list.png" height="170px" width="170px"><br><br>
Complete at least 1 track within this month.<br>Make sure to complete all the quests in a particular track.
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="pricing-table">
<div class="pricing-header">
<h3>Step 2</h3>
</div>
<img src="assets/img/document.png" height="170px" width="170px"><br><br>
After completion of a track, fill this <a style="color: #44ce6f" href="https://docs.google.com/forms/d/e/1FAIpQLSeqJBb8gYmgeXiOgqktotkTj50cVFU0c7iPJkWZQW68_CSCZQ/viewform" target="_blank">form</a> to recieve awesome goodies!
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="pricing-table">
<div class="pricing-header">
<h3>Step 3</h3>
</div>
<img src="assets/img/confetti.png" height="170px" width="170px"><br><br>
Let's celebrate. Tweet after you receive goodies.<br> Tag us @DscKiit @GoogleDevsIN #GCPCrashCourse #DeveloperStudentClubs #DSCIndia #GoogleCloud
</div>
</div>
</div>
</div>
<div class="shape8 rotateme"><img src="assets/img/shape2.svg" alt="shape"></div>
<div class="shape2 rotateme"><img src="assets/img/shape2.svg" alt="shape"></div>
<div class="shape7"><img src="assets/img/shape4.svg" alt="shape"></div>
<div class="shape4"><img src="assets/img/shape4.svg" alt="shape"></div>
</section>
<!-- End GCP Area -->
<!-- Start Ready To Talk Area -->
<!--
<a name="support"></a>
<section class="ready-to-talk">
<div class="container">
<h3>Ready to talk?</h3>
<p>Google Assistant can answer most of your questions.</p>
<div><a href="https://assistant.google.com/services/invoke/uid/0000006c15659a07" target="_blank"><img src="assets/img/google_assistant.png" height="100" width="100"></a></div>
<a href="https://assistant.google.com/services/invoke/uid/0000006c15659a07" target="_blank" class="btn talkDSC">Talk to DSC KIIT</a>
<br><br>
<center><a href="#contact" class="btn contactAssist">Contact</a></center>
</div>
</section>
-->
<!-- End Ready To Talk Area -->
<!-- Start Footer Area -->
<a name="contact"></a>
<footer class="footer-area bg-f7fafd">
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-6">
<div class="single-footer-widget">
<div class="logo">
<a href="#"><img src="assets/img/dsclogo.png" alt="logo"></a>
</div>
<!-- <p>Google colludes with academy students who are enthusiastic about growing developer communities and supports them with commencing student clubs on their campuses. Developer Student Clubs is a program that recognizes and supports university students who are excited about growing developer communities that cultivate learning, sharing, and collaboration.</p>-->
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="single-footer-widget pl-5">
<h3>General Guidelines</h3>
<ul class="list">
<li><a href="codeOfConduct.html">Code of Conduct</a></li>
</ul>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="single-footer-widget">
<h3>Google Developers</h3>
<ul class="list">
<li><a href="https://developers.google.com/programs/community/">Community Groups Program </a></li>
<li><a href="https://developers.google.com/programs/dsc/">Developer Student Clubs</a></li>
<li><a href="https://www.techincludes.com/">Tech Includes</a></li>
</ul>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="single-footer-widget">
<h3>Feel free to contact us</h3>
<ul class="footer-contact-info">
<li><i data-feather="map-pin"></i> School of Computer Engineering, KIIT University, Bhubaneswar, 751024</li>
<li><i data-feather="mail"></i> Email: <a href="mailto:info@dsckiit.in">info@dsckiit.in</a></li>
<li><i data-feather="mail"></i> Alt.: <a href="mailto:dsckiit@gmail.com">dsckiit@gmail.com</a></li>
<li><i data-feather="phone-call"></i> Phone: <a href="tel:+91-7504417023">+917504417023</a> (Manzar Hasnain)</li>
</ul>
<ul class="social-links">
<li><a href="https://www.facebook.com/dsckiit/" class="facebook"><i data-feather="facebook"></i></a></li>
<li><a href="https://twitter.com/DscKiit" class="twitter"><i data-feather="twitter"></i></a></li>
<li><a href="https://www.instagram.com/dsckiit/" class="instagram"><i data-feather="instagram"></i></a></li>
<li><a href="https://www.linkedin.com/company/dsc-kiit/" class="linkedin"><i data-feather="linkedin"></i></a></li>
</ul>
</div>
</div>
<div class="col-lg-12 col-md-12">
<div class="copyright-area">
<p>Copyright © 2019. All rights reserved</p>
</div>
</div>
</div>
</div>
<img src="assets/img/map.png" class="map" alt="map">
<div class="shape1"><img src="assets/img/shape1.png" alt="shape"></div>
<div class="shape8 rotateme"><img src="assets/img/shape2.svg" alt="shape"></div>
</footer>
<!-- End Footer Area -->
<div class="go-top"><i data-feather="arrow-up"></i></div>
<!-- Jquery Min JS -->
<script src="assets/js/jquery.min.js"></script>
<!-- Popper Min JS -->
<script src="assets/js/popper.min.js"></script>
<!-- Bootstrap Min JS -->
<script src="assets/js/bootstrap.min.js"></script>
<!-- Meanmenu Min JS -->
<script src="assets/js/jquery.meanmenu.min.js"></script>
<!-- WOW Min JS -->
<script src="assets/js/wow.min.js"></script>
<!-- Magnific Popup Min JS -->
<script src="assets/js/jquery.magnific-popup.min.js"></script>
<!-- Appear Min JS -->
<script src="assets/js/jquery.appear.js"></script>
<!-- Odometer Min JS -->
<script src="assets/js/odometer.min.js"></script>
<!-- Slick Min JS -->
<script src="assets/js/slick.js"></script>
<!-- Owl Carousel Min JS -->
<script src="assets/js/owl.carousel.min.js"></script>
<!-- Feather Icon Min JS -->
<script src="assets/js/feather.min.js"></script>
<!-- Form Validator Min JS -->
<script src="assets/js/form-validator.min.js"></script>
<!-- Main JS -->
<script src="assets/js/main.js"></script>
</body>
</html>