-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
451 lines (374 loc) · 19.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.no-icons.min.css"
rel="stylesheet">
<link href="//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css" rel="stylesheet">
<title>Porto</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.min.css"
integrity="sha512-tS3S5qG0BlhnQROyJXvNjeEM4UpMXHrQfTGmbQ1gKmelCxlSEBUaxhRBj/EFTzpbP4RVSrpEikbmdJobCvhE3g=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.theme.default.css"
integrity="sha512-OTcub78R3msOCtY3Tc6FzeDJ8N9qvQn1Ph49ou13xgA9VsH9+LRxoFU6EqLhW4+PKRfU+/HReXmSZXHEkpYoOA=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/owl.carousel.min.js"
integrity="sha512-bPs7Ae6pVvhOSiIcyUClR7/q2OAsRiovw4vAkX+zJbw3ShAeeqezq50RIIcIURq7Oa20rW2n2q+fyXBNcU9lrw=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
referrerpolicy="no-referrer" />
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.theme.default.min.css"
integrity="sha512-sMXtMNL1zRzolHYKEujM2AqCLUR9F2C4/05cdbxjjLSRvMQIciEPCQZo++nk7go3BtSuK9kfa/s+a4f4i5pLkw=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="./edit.css" />
</head>
<body>
<nav class="navbar">
<div class="container">
<a href="#" class="logo"><i class="fas fa-user-secret fa-2x"></i><b>ADWAITA</b></a>
<ul class="menu">
<li>
<a href="#home" class="menu-button">HOME</a>
</li>
<li>
<a href="#about" class="menu-button">ABOUT</a>
</li>
<li>
<a href="#services" class="menu-button">PROJECTS</a>
</li>
<li>
<a href="#skills" class="menu-button">SKILLS</a>
</li>
<li>
<a href="#team" class="menu-button">STUFF</a>
</li>
<li>
<a href="#contact" class="menu-button">CONTACT</a>
</li>
</ul>
<div class="toggler">
<i class="fas fa-bars"></i>
</div>
</div>
</nav>
<section id="home" class="home">
<div class="container col">
<div class="row">
<div class="home-content">
<video autoplay loop muted>
<source src="Pexels Videos 1943483.mp4" type="video/mp4">
</video>
<div class="text-1">
<-Hola amigos->
</div>
<div class="text-2">
<h1>Adwaita Here</h1>
</div>
<div class="text-3">And I am a <span class="typing"></span></div>
<a href="#">
<div class="btn">Devil</div>
</a>
</div>
</div>
</div>
</section>
<section id="about" class="bglight">
<div class="container col">
<div>
<h1 class="text-primary-light">About Myself</h1>
</div>
<div class="about-content">
<!-- <img src="https://images.unsplash.com/photo-1623868125132-a761958be884?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1101&q=80"
alt=""> -->
<img src="./IMG_20210214_003010.jpg" alt="">
<div class="about-text">
<h2>Glad To Meet You</h2>
<h3>
<span>No</span>
<span>Money</span>
<span>No</span>
<span>Honey</span>
</h3>
<p>I am Adawita Raj Modak , sophomore at VIT VELLORE. Football is a very important part of life.
Okay at studies.
Doing Web_Dev these days. Love to use Discord and Github.
</p>
<button class="btn"><a class="a1" href="./Adwaita RajModak_InternshalaResume (1).pdf"
download>Download Resume <i class="icon fas fa-download"></i>
</div></a> </button>
</div>
</div>
</section>
<section id="services" class="bgdark">
<div class="container col">
<h1 class="text-primary-dark">
Projects
</h1>
<div class="services-content">
<div class="service">
<!-- <a href="https://github.com/RajAdwaita/HackNPitch_Boolean-Autocrats_HackNSnack"></a> -->
<i class="icon fas fa-pager"></i>
<h4> Hack'n Snack</h4>
<p>This website attempts to integrate all the campus Canteens in the universities of Kolkata
.You can see a demo of how we have implemented a card system and a demo transaction base using
JAVASCRIPT.
</p><br>
<a href="https://github.com/RajAdwaita/HackNPitch_Boolean-Autocrats_HackNSnack" class="a1">Project
Link</a>
</div>
<div class="service">
<i class="icon fab fa-android"></i>
<h4>Movie Success Predictor</h4>
<p>The main aim of this project is to provide an analysis on how successful a movie is going to be.
Also check out the cover website which provides you a beautiful experience in the world of
movies...and the trailers too</p><br>
<a href="https://github.com/RajAdwaita/Movie-success-prediction" class="a1">Project Link</a>
</div>
<div class="service">
<i class="icon fas fa-chart-line"></i>
<h4>The Shoe Store</h4>
<p>Tried making this simple react web app ..not much functionality but the designs are pretty decent
to see. Choose from amongst the wide variety of Jordan's available here. Further updates to be
provided soon.</p><br>
<a href="https://github.com/RajAdwaita/ReactStoreApp" class="a1">Project Link</a>
</div>
<div class="service">
<i class="icon fas fa-brush"></i>
<h4>Speech Emotion Recognition</h4>
<p>The objective of this project is to monitor the psycho physiological state of a person in lie
detectors by building a
model to recognize emotion from speech using the librosa and sklearn libraries and the RAVDESS
dataset.
</p><br>
<a href="https://github.com/RajAdwaita/Speech_Emotion_Recognition" class="a1">Project Link</a>
</div>
<div class="service">
<i class="icon fas fa-credit-card"></i>
<h4>The POTx</h4>
<p>In our project, we will be utilising TCP connection ports to act as a honeypot, so that when an
attacker tries to
connect to the open port, his IP address is traced and after that he is denied access to the
network.</p><br>
<a href="https://github.com/RajAdwaita/Honey_in_the_pot" class="a1">Project Link</a>
</div>
<div class="service">
<i class="icon fas fa-keyboard"></i>
<h4>Web Assistant</h4>
<p>Will provide a search bar to "search for a keyword" that one might need but cannot find.
Gives a popup warning if the mouse is above a button for more than 1 sec (predicting a
click)that contains a link to
another website</p><br><a href="https://github.com/RajAdwaita/WEB_ASSISTANT" class="a1">Project
Link</a>
</div>
</div>
</div>
</section>
<section id="skills" class="bglight">
<div class="container col">
<h2 class="text-primary-light">My Skills</h2>
<div class="skills-content">
<div class="column">
<div class="text">Tech-Stack.
</div>
<p>Have been working on these tech stack for quite some time adn now slowly gaining confidence.
Mostly motivated by my peers to learn new technologies and implement them in my projects.
Thinking of learning a few more new technologies .
</p>
<!-- <a href="#" class="btn">Read More</a> -->
</div>
<div class="column">
<div class="skill">
<div class="skill-info">
<span><a href="https://www.w3.org/html/" target="_blank"> <img
src="https://raw.githubusercontent.com/devicons/devicon/master/icons/html5/html5-original-wordmark.svg"
alt="html5" width="40" height="40" /> </a> </span>
<!-- <i class="fa fa-html"></i> -->
<span>75%</span>
</div>
<div class="progress-bar html">
</div>
</div>
<br>
<div class="skill">
<div class="skill-info">
<span><a href="https://www.w3schools.com/css/" target="_blank"> <img
src="https://raw.githubusercontent.com/devicons/devicon/master/icons/css3/css3-original-wordmark.svg"
alt="css3" width="40" height="40" /> </a></span>
<span>70%</span>
</div>
<div class="progress-bar css">
</div>
</div>
<br>
<div class="skill">
<div class="skill-info">
<span><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript" target="_blank">
<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/javascript/javascript-original.svg"
alt="javascript" width="40" height="40" /> </a></span>
<span>60%</span>
</div>
<div class="progress-bar js">
</div>
</div>
<br>
<div class="skill">
<div class="skill-info">
<span><a href="https://reactjs.org/" target="_blank"> <img
src="https://raw.githubusercontent.com/devicons/devicon/master/icons/react/react-original-wordmark.svg"
alt="react" width="40" height="40" /> </a></span>
<span>35%</span>
</div>
<div class="progress-bar jsx">
</div>
</div>
<br>
<div class="skill">
<div class="skill-info">
<span><a href="https://nodejs.org" target="_blank"> <img
src="https://raw.githubusercontent.com/devicons/devicon/master/icons/nodejs/nodejs-original-wordmark.svg"
alt="nodejs" width="40" height="40" /> </a></span>
<span>35%</span>
</div>
<div class="progress-bar wpress">
</div>
</div>
<br>
<div class="skill">
<div class="skill-info">
<span><a href="https://www.w3schools.com/cpp/" target="_blank"> <img
src="https://raw.githubusercontent.com/devicons/devicon/master/icons/cplusplus/cplusplus-original.svg"
alt="cplusplus" width="40" height="40" /> </a>
</span>
<span>70%</span>
</div>
<div class="progress-bar cpp">
</div>
</div>
<br>
<div class="skill">
<div class="skill-info">
<span><a href="https://www.java.com" target="_blank"> <img
src="https://raw.githubusercontent.com/devicons/devicon/master/icons/java/java-original.svg"
alt="java" width="40" height="40" /> </a></span>
<span>75%</span>
</div>
<div class="progress-bar java">
</div>
</div>
<br>
<div class="skill">
<div class="skill-info">
<span><a href="https://www.python.org" target="_blank"> <img
src="https://raw.githubusercontent.com/devicons/devicon/master/icons/python/python-original.svg"
alt="python" width="40" height="40" /> </a></span>
<span>65%</span>
</div>
<div class="progress-bar html">
</div>
</div>
</div>
</div>
</div>
</section>
<section id="team" class="bgdark">
<div class="container col">
<h1 class="text-primary-dark">MY STUFF</h1>
<div class="owl-carousel owl-theme">
<div class="item">
<div class="member-image">
<img class="image"
src="https://pbs.twimg.com/profile_images/1433068791261396993/q9yud8_V_400x400.jpg" alt="">
</div>
<h2 class="name">Code-Chef</h2>
<a href="https://www.codechef.com/users/raj2002" class="job">
CONNECT
</a>
<p></p>
</div>
<div class="item">
<div class="member-image">
<img class="image"
src="https://pbs.twimg.com/profile_images/910592237695676416/7xInX10u_400x400.jpg" alt="">
</div>
<h2 class="name">LeetCode</h2>
<a href="https://leetcode.com/rajmodak/" class="job">
CONNECT
</a>
<p></p>
</div>
<div class="item">
<div class="member-image">
<img class="image"
src="https://pbs.twimg.com/profile_images/1414990564408262661/r6YemvF9_400x400.jpg" alt="">
</div>
<h2 class="name">GitHub</h2>
<a href="https://github.com/RajAdwaita" class="job">
CONNECT
</a>
<p></p>
</div>
</div>
</div>
</section>
<section id="contact" class="bglight">
<div class="container col">
<h1 class="text-primary-light">Contact</h1>
<div class="contact-info">
<div class="contact-item">
<i class="icon fas fa-mobile-alt"></i>
+0919330554877
</div>
<div class="contact-item">
<i class="icon fas fa-envelope"></i>
</div>
<div class="contact-item">
<i class="icon fas fa-map-marker-alt"></i>
Kamardanga, Howrah-711104
</div>
</div>
<!--
<form action="" class="contact-form">
<input type="text" class="name" placeholder="NAME">
<input type="email" class="email" placeholder="EMAIL">
<input type="text" class="subject" placeholder="SUBJECT">
<textarea class="message" placeholder="message" name="" id="" cols="30" rows="10"></textarea>
<button type="submit" value="Send Message" class="btn">SUBMIT</button>
</form> -->
</div>
</section>
<section class="footer">
<div class="container col">
<div class="copyright">
© 2021 ADWAITA
</div>
<div>
Created With <i class="fas fa-heart"></i> by Adwaita
</div>
<div class="social">
<a href="https://www.instagram.com/_bablu_bodmash/" class="fab fa-instagram"></a>
<a href="https://twitter.com/adwaitaraj001" class="fab fa-twitter"></a>
<a href="https://www.linkedin.com/in/adwaita-raj-modak-5b435a203/" class="fab fa-linkedin"></a>
<a href="https://github.com/RajAdwaita" class="fab fa-github"></a>
</div>
</div>
</section>
<!-- <script>
</script> -->
<button class="goto fas fa-arrow-up">
</button>
<script src="https://cdnjs.cloudflare.com/ajax/libs/typed.js/2.0.12/typed.min.js"
referrerpolicy="no-referrer"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"
integrity="sha512-894YE6QWD5I59HgZOGReFYm4dnWc1Qt5NtvYSaNcOP+u1T9qYdvdihz0PPSiiqn/+/3e7Jo4EaG7TubfWGUrMQ=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/owl.carousel.min.js"
integrity="sha512-bPs7Ae6pVvhOSiIcyUClR7/q2OAsRiovw4vAkX+zJbw3ShAeeqezq50RIIcIURq7Oa20rW2n2q+fyXBNcU9lrw=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous"></script>
</body>
<script src="./work.js"></script>
</html>