-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
464 lines (410 loc) · 18.6 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
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
<!-- <!DOCTYPE html> -->
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width initial-scale=1" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<!-- Materialize - Compiled and minified CSS-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.95.3/css/materialize.min.css" />
<!-- Font Awesome Icon - CSS-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" />
<!-- Custom Styles-->
<link rel="stylesheet" href="style.css" />
<title>Deepthi Bennet | Data Science Student</title>
</head>
<body>
<!-- Navigation Menu-->
<!-- Nav class 1 -->
<nav class="hide-on-small-only">
<ul class="side-nav fixed section table-of-contents">
<li class="logo">
<a id="logo-container" aria-label="Navigate to the beginning of the page" href="#intro"
class="brand-logo grey-blue-text">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSQwYYrW1q8DpiYg8Vhj42dN6UU2P0MPqHviQ&usqp=CAU"
class="circle img-responsive profile-pic" alt="avatar">
</a>
</li>
<li class="bold">
<a aria-label="Navigate to the About section" href="#about" class="waves-effect waves-dark teal-text"><i
class="mdi-social-person small"></i><span>About</span></a>
</li>
<li class="bold">
<a aria-label="Navigate to the Experience section" href="#experience"
class="waves-effect waves-dark teal-text"><i
class="mdi-action-trending-up small"></i><span>Experience</span></a>
</li>
<li class="bold">
<a aria-label="Navigate to the Projects section" href="#projects" class="waves-effect waves-dark teal-text"><i
class="mdi-av-my-library-books small"></i><span>Projects</span></a>
</li>
<li class="bold">
<a aria-label="Navigate to the Skills section" href="#skills" class="waves-effect waves-dark teal-text"><i
class="mdi-action-assessment small"></i><span>Skills</span></a>
</li>
<li class="bold">
<a aria-label="Navigate to the Education section" href="#education" class="waves-effect waves-dark teal-text"><i
class="mdi-social-school small"></i><span>Education</span></a>
</li>
<li class="bold">
<a aria-label="Navigate to the Contact section" href="#contact" class="waves-effect waves-dark teal-text"><i
class="mdi-content-mail small"></i><span>Contact</span></a>
</li>
<li class="bold">
<a aria-label="Open Deepthi's resume in a new tab"
href="https://drive.google.com/file/d/1CW2Sw0_vT_azQETwsZipTcOaNlWo0AKb/view" target="_blank"
class="waves-effect waves-dark teal-text"><i class="mdi-file-folder-open small"></i><span>Resume</span></a>
</li>
</ul>
</nav>
<!-- Nav class 2 -->
<nav class="hide-on-large only trigger z-depth-1">
<a aria-label="Toggle visibility of the mobile navbar" href="#" data-activates="slide-out"
class="button-collapse"><i class="mdi-navigation-menu"></i></a>
<div class="name-title">
<a id="name" aria-label="Navigate to the beginning of the page" href="#" style="color:#fff">Deepthi Bennet <br>
</a><span>Data Science Student</span>
</div>
</nav>
<!-- Nav class 3 -->
<nav class="hide-on-large only">
<ul id="slide-out" class="side-nav">
<li class="bold">
<a aria-label="Navigate to the About section" href="#about" class="waves-effect waves-dark teal-text"><i
class="mdi-social-person small"></i><span>About</span></a>
</li>
<li class="bold">
<a aria-label="Navigate to the Experience section" href="#experience"
class="waves-effect waves-dark teal-text"><i
class="mdi-action-trending-up small"></i><span>Experience</span></a>
</li>
<li class="bold">
<a aria-label="Navigate to the Projects section" href="#projects" class="waves-effect waves-dark teal-text"><i
class="mdi-av-my-library-books small"></i><span>Projects</span></a>
</li>
<li class="bold">
<a aria-label="Navigate to the Skills section" href="#skills" class="waves-effect waves-dark teal-text"><i
class="mdi-action-assessment small"></i><span>Skills</span></a>
</li>
<li class="bold">
<a aria-label="Navigate to the Education section" href="#education" class="waves-effect waves-dark teal-text"><i
class="mdi-social-school small"></i><span>Education</span></a>
</li>
<li class="bold">
<a aria-label="Navigate to the Contact section" href="#contact" class="waves-effect waves-dark teal-text"><i
class="mdi-content-mail small"></i><span>Contact</span></a>
</li>
<li class="bold">
<a aria-label="Open Deepthi's Resume in a new tab"
href="https://drive.google.com/file/d/1B6MZ1z0-7NsefC3Lm_q-uhib28MTqpE9/view?usp=sharing" target="_blank"
class="waves-effect waves-dark teal-text"><i class="mdi-file-folder-open small"></i><span>Resume</span></a>
</li>
</ul>
</nav>
<!-- Main Content-->
<main>
<!-- First Section: Heading lines and image -->
<section id="intro" class="section scrollspy full-height">
<div class="overlay"></div>
<div class="container">
<div class="col-md-9">
<div class="content section-padding valign" style="margin-left: 10%; margin-top: 50px;">
<div class="caption">
<h2 style="font-weight: 400;" class="slide-left">Hi, I'm <span class="teal">Deepthi Bennet.</span></h2>
<h5 style="font-weight: 400;"> Self-driven, quick starter, passionate programmer with a curious mind who
enjoys solving complex and challenging real-world problems. </h5>
</div>
<div class="social">
<a href="https://linkedin.com/in/deepthi-tabitha-bennet-24455222a" target="_blank">
<button class="icon-btn linkedin">
<i class="fa fa-linkedin"></i>
</button>
</a>
<a href="https://github.com/DeepthiTabithaBennet" target="_blank">
<button class="icon-btn github">
<i class="fa fa-github"></i>
</button>
</a>
<a href="https://stackoverflow.com/users/17112163/deepthi-tabitha-bennet" target="_blank">
<button class="icon-btn stackoverflow">
<i class="fa fa-stack-overflow"></i>
</button>
</a>
<a href="https://medium.com/@DeepthiTabithaBennet" target="_blank">
<button class="icon-btn github">
<i class="fa fa-medium"></i>
</button>
</a>
</div>
<div class='buttons'>
<a href="#about" class="readme"> <b>Read More</b> </a>
<a href="#contact" class="contactme"> <b>Contact Me</b> </a> <br> <br> <br>
</div>
</div>
</div>
</div>
</section>
<!-- Second Section: About -->
<section id="about" class="section scrollspy">
<h3 class="page-title white-text teal">About</h3>
<div class="container flow-text">
<p>
I am a Data Science Grad Student at Thiagarajar College of Engineering. I enjoy problem-solving and coding.
Always strive to bring 100% to the work I do.
I am passionate about developing complex applications that solve real-world problems impacting millions of
users.
</p>
<p>
Looking for an opportunity to work in a challenging position combining my skills in Data Science,
which provides professional development, interesting experiences and personal growth.
</p>
</div>
</section>
<!-- Third Section: Experience -->
<section id="experience" class="section scrollspy">
<h3 class="page-title white-text teal">Experience</h3>
<div class="container">
<!-- Latest Experience -->
<div class="card">
<div class="card-content">
<div class="row">
<div class="col s12 m2">
<a href="https://www.clouddestinations.com/" target="_blank"><img alt="Cloud Destinations logo"
src="https://clouddestinations.com/assets/img/cloud-destination-logo.png"
class="responsive-img center-block" /></a>
</div>
<div class="col s12 m10">
<p>
<span class="card-title"><a href="www.clouddestinations.com/" target="_blank" class="hoverline"
style="color:white">Cloud Destinations</a></span>
</p>
</div>
</div>
<div class="role text-darken-2" style="color:orange">Data Science Intern</div>
<ul>
<li>
Analysed massive client datasets and provided valuable insights for further actions
</li>
<li>
Worked as part of the Data Engineering Team and gained invaluable hands-on experience in working with data
</li>
<br>
<b>Tools:</b> Python, Jupyter Notebook
</li>
</ul>
</div>
<div class="card-action">
<span>July 2021 - August 2021 | Silicon Valley - Remote</span>
</div>
</div>
<div class="card">
<div class="card-content">
<div class="row">
<div class="col s12 m2">
<a href="https://www.netsgoplaces.com/" target="_blank"><img alt="NetsGoPlaces logo"
src="https://www.netsgoplaces.com/uploads/1/1/9/2/119251648/editor/climb_2.png?1640945089"
class="responsive-img center-block" /></a>
</div>
<div class="col s12 m10">
<p>
<span class="card-title"><a href="www.NetsGoPlaces.com/" target="_blank" class="hoverline"
style="color:white">NetsGoPlaces</a></span>
</p>
</div>
</div>
<div class="role text-darken-2" style="color:orange">Co-Founder and CEO</div>
<ul>
<li>
I started an online Web Services Company for Small Businesses, Students, Job-Seekers and Professionals
highlight their skills and showcase their projects
</li>
<li>
Several satisfied customers
</li>
<br>
<b>Tools:</b> HTML, CSS, JavaScript, WYSIWYG
</li>
</ul>
</div>
<div class="card-action">
<span>January 2021 - Present | Online Web Services</span>
</div>
</div>
</section>
<!-- Fourth Section: Projects -->
<section id="projects" class="section scrollspy">
<h3 class="page-title white-text teal">Projects</h3>
<div class="container">
<div class="row">
<h1>Coming Soon!</h1>
</div>
</div>
</section>
<!-- Fifth Section: Skills -->
<section id="skills" class="section scrollspy">
<h3 class="page-title white-text teal">Skills</h3>
<div class="container">
<!-- Languages and Databases -->
<div class="card">
<div class="card-content">
<h4 class="light" style="color:orange">Languages and Databases</h4>
<div class="row text-center">
<div class="col s4 m2">
<img alt=""
src="https://upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Python-logo-notext.svg/182px-Python-logo-notext.svg.png"
class="responsive-img" />Python
</div>
<div class="col s4 m2">
<img alt=""
src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/61/HTML5_logo_and_wordmark.svg/195px-HTML5_logo_and_wordmark.svg.png"
class="responsive-img" />HTML5
</div>
<div class="col s4 m2">
<img alt=""
src="https://upload.wikimedia.org/wikipedia/commons/thumb/d/d5/CSS3_logo_and_wordmark.svg/180px-CSS3_logo_and_wordmark.svg.png"
class="responsive-img" />CSS3
</div>
<div class="col s4 m2">
<img alt=""
src="https://upload.wikimedia.org/wikipedia/en/thumb/d/dd/MySQL_logo.svg/150px-MySQL_logo.svg.png"
class="responsive-img" />MySQL
</div>
<div class="col s4 m2">
<img alt=""
src="https://upload.wikimedia.org/wikipedia/commons/thumb/1/18/ISO_C%2B%2B_Logo.svg/180px-ISO_C%2B%2B_Logo.svg.png"
class="responsive-img" />C++
</div>
<div class="col s4 m2">
<img alt=""
src="https://upload.wikimedia.org/wikipedia/en/thumb/3/30/Java_programming_language_logo.svg/182px-Java_programming_language_logo.svg.png"
class="responsive-img" />Java
</div>
</div>
</div>
</div>
<div class="card">
<div class="card-content">
<h4 class="light" style="color:orange">Libraries</h4>
<div class="row text-center">
<div class="col s4 m2">
<img alt="" src="https://numpy.org/images/logo.svg" class="responsive-img" />NumPy
</div>
<div class="col s4 m2">
<img alt="" src="https://pandas.pydata.org/static/img/pandas_mark_white.svg"
class="responsive-img" />Pandas
</div>
<div class="col s4 m2">
<img alt="" src="https://opencv.org/wp-content/uploads/2022/05/logo.png" class="responsive-img" />OpenCV
</div>
<div class="col s4 m2">
<img alt=""
src="https://upload.wikimedia.org/wikipedia/commons/thumb/0/05/Scikit_learn_logo_small.svg/182px-Scikit_learn_logo_small.svg.png"
class="responsive-img" />scikit-learn
</div>
<div class="col s4 m2">
<img alt=""
src="https://upload.wikimedia.org/wikipedia/commons/thumb/0/01/Created_with_Matplotlib-logo.svg/192px-Created_with_Matplotlib-logo.svg.png?20150219130408"
class="responsive-img" />matplotlib
</div>
</div>
</div>
</div>
<!-- Frameworks -->
<div class="card">
<div class="card-content">
<h4 class="light" style="color:orange">Frameworks</h4>
<div class="row text-center">
<div class="col s4 m2">
<img alt=""
src="https://upload.wikimedia.org/wikipedia/commons/thumb/a/ae/Keras_logo.svg/270px-Keras_logo.svg.png"
class="responsive-img" />Keras
</div>
<div class="col s4 m2">
<img alt=""
src="https://upload.wikimedia.org/wikipedia/commons/thumb/a/ab/TensorFlow_logo.svg/330px-TensorFlow_logo.svg.png"
class="responsive-img" />TensorFlow
</div>
<div class="col s4 m2">
<img alt=""
src="https://upload.wikimedia.org/wikipedia/commons/thumb/1/10/PyTorch_logo_icon.svg/640px-PyTorch_logo_icon.svg.png"
class="responsive-img" />PyTorch
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Seventh Section: Education -->
<section id="education" class="section scrollspy">
<h3 class="page-title white-text teal">Education</h3>
<div class="container">
<div class="row">
<!-- Education -->
<div class="col s12 m6 l6">
<div class="card">
<div class="card-content">
<p>
<span class="card-title"><a href="https://www.tce.edu/" target="_blank" class=" hoverline"
style="color:white"><b>Thiagarajar College of Engineering</b></a></span>
</p>
<p style="color:orange">TamilNadu, India</p>
<p>
<b>Degree: </b>Integrated Masters in Data Science
<br>
<b>CGPA: </b> In Progress
</p>
<ul>
<p>
<b>Relevant Coursework:</b>
<ul>
<li>Predictive Analytics</li>
<li>Database Management Systems</li>
<li>Machine Learning</li>
<li>Linear Algebra</li>
</ul>
</p>
</ul>
</div>
</div>
</div>
</section>
<!-- Eight Section: Contact -->
<section id="contact" class="section scrollspy full-height">
<section id="contact">
<h3 class="page-title white-text teal">Contact</h3>
<div class="contact-wrapper">
<!-- Left contact page -->
<form id="contact-form" class="form-horizontal" action="mailto:[email protected]" method="get"
enctype="text/plain" role="form">
<div class="form-group">
<div class="col-sm-12">
<input type="text" class="form-control" id="name" placeholder="NAME" name="name" value="" required>
</div>
</div>
<div class="form-group">
<div class="col-sm-12">
<input type="email" class="form-control" id="email" placeholder="EMAIL" name="email" value="" required>
</div>
</div>
<input type="text" class="form-control" id="message" placeholder="MESSAGE" name="message" value="" required>
<br>
<div class='buttons'>
<input type="submit" name="submit" class="contactme" value="Submit" />
</div>
</button>
</form>
<!-- Left contact page -->
<div class="direct-contact-container">
<ul class="contact-list">
<li class="list-item"><i class="fa fa-map-marker fa-2x"><span class="contact-text place"> <a> Madurai,
TamilNadu, India </a> </span></i></li>
<li class="list-item"><i class="fa fa-envelope fa-2x"><span class="contact-text gmail"><a
href="mailto:[email protected]"
title="Send me an email">[email protected]</a></span></i></li>
</ul>
</div>
</div>
</section>
</section>
</main>
</body>
</html>