This repository has been archived by the owner on Nov 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
index.html
283 lines (190 loc) · 9.78 KB
/
index.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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- Title of the webpage -->
<title>#GCPCrashCourse at DSC VIT</title>
<!-- Favicon linking -->
<link rel="apple-touch-icon" sizes="180x180" href="icons/favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="icons/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="icons/favicons/favicon-16x16.png">
<link rel="manifest" href="icons/favicons/site.webmanifest">
<!-- Linking Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Poppins:400,800&display=swap" rel="stylesheet">
<!-- Linking Jquery CDN -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<!-- Linking CSS Files -->
<link rel="stylesheet" href="css/index.css">
<!-- Linking JS Files -->
<script src="js/index.js"></script>
<!-- Adding PWA Capabilities -->
<link rel="manifest" href="manifest.json">
<script>
if('serviceWorker' in navigator) {
navigator.serviceWorker.register('./sw.js')
.then(function() {
console.log('Service Worker Registered');
})
.catch( () => {
console.log("There was error registering service worker")
})
}
</script>
</head>
<body>
<!-- Tint -->
<div class="tint"></div>
<!-- Popup Modals for Tracks -->
<div class="modal">
<!-- Modal Top bar with close icon -->
<div class="modal-top-bar">
<div id="close-modal">Close</div>
</div>
<!-- Modal Data -->
<div class="modal-main">
<!-- Application Modal -->
<div class="modal-main-app">
<h1>App Track Quests</h1>
<a href="https://bit.ly/vitgcpapp" target="_blank">
<div class="enroll-button">Enroll Now</div>
</a>
<h3>
<i>Remember to use the same account you used to enroll</i>
</h3>
<p>1. Baseline: Deploy & Develop <a href="https://www.qwiklabs.com/quests/37">Click to start</a> </p>
<p>2. Website and Web Applications <a href="https://www.qwiklabs.com/quests/39">Click to start</a> </p>
<p>3. Deploying Applications <a href="https://www.qwiklabs.com/quests/26">Click to start</a> </p>
<p>4. Cloud Development <a href="https://www.qwiklabs.com/quests/67">Click to start</a> </p>
<p>5. Exploring API’s <a href="https://www.qwiklabs.com/quests/54">Click to start</a> </p>
<h3>
<i>Only after all 5 quests are complete is the track considered completed.</i>
</h3>
</div>
<!-- Machine Learning Modal -->
<div class="modal-main-ml">
<h1>Machine Learning Track Quests</h1>
<a href="https://bit.ly/vitgcpdata" target="_blank">
<div class="enroll-button">Enroll Now</div>
</a>
<h3>
<i>Remember to use the same account you used to enroll</i>
</h3>
<p>1. Baseline: Data, ML, AI <a href="https://google.qwiklabs.com/quests/34">Click to start</a> </p>
<p>2. Intro to ML: Image processing<a href="https://www.qwiklabs.com/quests/82">Click to start</a> </p>
<p>3. BigQuery for Machine Learning<a href="https://www.qwiklabs.com/quests/71">Click to start</a> </p>
<p>4. Intermediate ML: Tensorflow on GCP<a href="https://www.qwiklabs.com/quests/83">Click to start</a> </p>
<p>5. Machine Learning API’s<a href="https://www.qwiklabs.com/quests/32">Click to start</a> </p>
<h3>
<i>Only after all 5 quests are complete is the track considered completed.</i>
</h3>
</div>
<!-- Data Modal -->
<div class="modal-main-data">
<h1>Data Track Quests</h1>
<a href="https://bit.ly/vitgcpdata" target="_blank">
<div class="enroll-button">Enroll Now</div>
</a>
<h3>
<i>Remember to use the same account you used to enroll</i>
</h3>
<p>1. Baseline: Data, ML, AI <a href="https://google.qwiklabs.com/quests/34">Click to start</a> </p>
<p>2. BigQuery for Data Analysis<a href="https://www.qwiklabs.com/quests/55">Click to start</a> </p>
<p>3. Scientific Data Processing<a href="https://google.qwiklabs.com/quests/28">Click to start</a> </p>
<p>4. Data engineering <a href="https://www.qwiklabs.com/quests/25">Click to start</a> </p>
<p>5. Data Science on Google Cloud Platform <a href="https://www.qwiklabs.com/quests/43">Click to start</a> </p>
<h3>
<i>Only after all 5 quests are complete is the track considered completed.</i>
</h3>
</div>
</div>
</div>
<!-- Landing section -->
<div class="main">
<div class="main-content-holder">
<!-- Heading -->
<h1>#GCPCrashCourse</h1>
<!-- DSC Logo -->
<div class="dsc-logo"></div>
<!-- Know More Button -->
<div class="know-more-button">Know More</div>
</div>
</div>
<!-- About Section -->
<div class="main-about">
<!-- About Section -->
<div style="padding-bottom: 40px;">
<!-- About Section Heading -->
<h1>About #GCPCrashCourse</h1>
<!-- About Section Paragraph -->
<p>Ever thought of learning about Google Cloud Platform? We've got you covered. DSC VIT in collaboration with Developer Student Clubs and Qwiklabs brings to you #GCPCrashCourse, the best way to get started with Google Cloud Platform.</p>
</div>
<!-- Tracks Section -->
<div style="padding-bottom: 60px;">
<!-- Tracks Section Heading -->
<h1>We have three exciting tracks for you</h1>
<!-- Tracks Section Pargraph -->
<p>Click on a track to get enrolled in it:</p>
<!-- Tracks Section Icons -->
<div class="main-about-icon">
<div class="icon-holder">
<div class="icon data"></div>
<div class="icon-text">Data</div>
</div>
<div class="icon-holder">
<div class="icon android"></div>
<div class="icon-text">Application Development</div>
</div>
<div class="icon-holder">
<div class="icon ml"></div>
<div class="icon-text">Machine Learning</div>
</div>
</div>
</div>
<!-- Rewards section -->
<div style="padding-bottom: 60px;">
<!-- Rewards Section Heading -->
<h1>Nothing's fun without rewards</h1>
<!-- Rewards Section Pargraph -->
<p>Any one who completes at least one Track in this month is eligible for Goodies</p>
<!-- Rewards Section Icons -->
<div class="main-about-icon">
<div class="icon-holder-two">
<div class="icon hoodie"></div>
<div class="icon-text">Hoodies</div>
</div>
<div class="icon-holder-two">
<div class="icon pen"></div>
<div class="icon-text">Schwags</div>
</div>
<div class="icon-holder-two">
<div class="icon certificate"></div>
<div class="icon-text">Certification</div>
</div>
</div>
</div>
<!-- Steps section -->
<div style="padding-bottom: 60px;">
<!-- Steps Section Heading -->
<h1>Three Simple Rules</h1>
<!-- Steps Section Pargraph -->
<p>Follow these three simple rules and you're golden:</p>
<!-- Steps Section Icons -->
<div class="main-about-icon">
<div class="icon-holder-three">
<div class="icon-two step-one"></div>
<div class="icon-text-two">Enroll in any mentioned above quest</div>
</div>
<div class="icon-holder-three">
<div class="icon-two step-two"></div>
<div class="icon-text-two">Complete at least 1 track before 31st October (9 AM)</div>
</div>
<div class="icon-holder-three">
<div class="icon-two step-three"></div>
<div class="icon-text-two">Submit the <a href="https://bit.ly/vitgcpreport" target="_blank">form</a>, let us know at our <a href="https://twitter.com/dscvit" target="_blank">twitter</a> or <a href="https://instagram.com/dscvitvellore" target="_blank">instagram</a> and receive goodies!</div>
</div>
</div>
</div>
</div>
</body>
</html>