-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
435 lines (381 loc) · 19.5 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
<!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
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<!-- Latest compiled and minified CSS -->
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
/>
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<!-- Popper JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="index.css" type="text/css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
/>
<title>Arghya - Portfolio Sites</title>
</head>
<body>
<!-- navbar starts -->
<div class="container">
<div class="nav_section">
<nav class="navbar navbar-expand-lg navbar-light">
<a class="navbar-brand text-white" href="#"
>Who's Arghya<span>??</span></a
>
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle navigation"
>
<i class="text-white fa fa-bars"></i>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" style="color: #f87652 !important" href="#hero_section"
>Home</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="#about_section">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#skills_section">Skills</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#portfolio_section">Portfolio</a>
</li>
<li class="nav-item">
<a class="nav-link" target="_blank" href="https://night-owlss.blogspot.com/">Blog</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact_section">Contacts</a>
</li>
</ul>
</div>
</nav>
</div>
</div>
<!-- navbar ends -->
<!-- hero section -->
<div class="hero_section" id = "hero_section" >
<div class="container">
<div class="row">
<div class="col-lg-6 col-md-6 col-ms-12 col-xs-12">
<h3>Hello!</h3>
<h1>I <span style="color: #F87652 ;" >'</span>m Arghya</h1>
<h2>Frontend Web Dev and Designer</h2>
<p>
<cite> <br><br> “Sometimes it pays to stay in bed on Monday, rather than spending the rest of the week debugging Monday’s code.”</cite> <br> – Dan Salomon
</p>
<div class="btn_container">
<button class="btn btn-light animate_animated" onclick="window.location.href = '#about_section';" >Hire Me</button>
</div>
</div>
<div class="col-lg-6 col-md-6 col-ms-12 col-xs-12">
<center>
<img src="resizedhero.png" alt="" />
</center>
</div>
</div>
</div>
</div>
<!-- hero section ends -->
<!-- about section -->
<div class="about_section" id = "about_section">
<div class="container">
<div class="row m-0">
<div class="col-lg-6 col-md-6 col-ms-12 col-xs-12">
<h2 id="heading">Any type of Questions <br> & Discussions </h2>
<div>
<h5 class="lets_talk">Let's Talk <span style="color: #F87652 ;">-----------------</span> </h5>
</div>
<h4 id = "info_gmail">[email protected]</h4>
<div class="contact_info">
<h5 onclick="window.location.href = 'https://www.facebook.com/ArghyaTheOne';" >Facebook : /ArghyaTheOne</h5>
<h5>WhatsApp : Main Nahi Batayungaa😁😁😁 </h5>
</div>
</div>
<div class="col-lg-6 col-md-6 col-ms-12 col-xs-12 about_me_right_section">
<h2 id = "heading">About Me</h2>
<hr>
<p id = "txt">Hello! My name is Arghya and I am a FrontEnd Developer. I can Create Beautiful Website according to Your Needs
<br>
I am a B.Tech undergraduate ; Currently in 4th year .
<br>
<br>Technology excites me and I am always in awe of the change it drives in the world. Certain skills that I have worked with include Data Structures and Algorithms (Py + cpp), Web Development (NodeJs, MySQL , ReactJs) & Machine Learning Enthusiast (Python). And what I might lack in skills I make up for with my determination to learn.
Outside of tech, I am a Movie lover, an amature EDM Producer and have spent my college days nurturing a lot of side hobbies along with studies.
</p>
</table>
<button class="btn btn-light btn-sm animate_animated" target ="_blank" onclick="window.location.href = 'https://drive.google.com/file/d/1s5l3yGFFFcIWoV5LrvDaqYFEkv6oWSQ_/view?usp=sharing';" >Download CV</button>
</div>
</div>
</div>
</div>
<!-- about section ends -->
<!-- skills section -->
<div class = "skills_section" id = "skills_section" >
<div class="container">
<div class="row ">
<div class="col-lg-6 col-md-6 col-ms-12 col-xs-12 skills_section_left_section">
<div>
<h1 class="text-white" id = "heading">My Skills <span style="color: #F87652;">.</span></h1>
<hr >
<p> You can check my skills <span style="color: #F87652;" >.</span></p>
<div class="social_media_icons">
<ul class="list-group">
<li class="list-group-item">
<a href="https://www.hackerrank.com/Into_You">Hackerrank</a>
</li>
<li class="list-group-item">
<a href="https://codeforces.com/profile/Into_You">Codeforces</a>
</li>
<li class="list-group-item">
<a href="https://leetcode.com/Into_You/">LeetCode</a>
</li>
<li class="list-group-item">
<a href="https://github.com/Into-Y0u">GitHub</a>
</li>
</ul>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-ms-12 col-xs-12 skills_section_right_section">
<div class="each_skills">
<span>HTML5 , CSS , Bootstrap , SQL , Python</span>
<div class="progress">
<div class="progress-bar bg-warning" role="progressbar" style="width: 75%" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="each_skills">
<span>ReactJs , Vanilla-Js , Bootstrap , ReactTrap</span>
<div class="progress">
<div class="progress-bar bg-warning" role="progressbar" style="width: 65%" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="each_skills">
<span>C/C++ , WordPress , DSA , Django </span>
<div class="progress">
<div class="progress-bar bg-warning" role="progressbar" style="width: 55%" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="each_skills">
<span>Kotlin , Java , Jquery</span>
<div class="progress">
<div class="progress-bar bg-warning" role="progressbar" style="width: 45%" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="each_skills">
<span>MS office , Canva , FL Studio , VS Code</span>
<div class="progress">
<div class="progress-bar bg-warning" role="progressbar" style="width: 85%" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- portfolio section -->
<div class="portfolio_section" id = "portfolio_section" >
<div class="container">
<div class="row">
<div class = " col-lg-12 col-md-12 col-ms-12 col-xs-12" >
<h1 class="text-white text-center"> My Portfolio <span style="color: #F87652;">.</span> </h1>
</div>
</div>
<div class = "row mt-5">
<div class = " col-lg-12 col-md-12 col-ms-12 col-xs-12">
<nav class="d-flex justify-content-center">
<div class="nav nav-tabs nav-fill" id="nav-tab" role="tablist">
<a class="nav-item nav-link active text-white" id="nav-home-tab" data-toggle="tab" href="#nav-home" role="tab" aria-controls="nav-home" aria-selected="true">HTML,CSS & JS</a>
<a class="nav-item nav-link text-white" id="nav-profile-tab" data-toggle="tab" href="#nav-profile" role="tab" aria-controls="nav-profile" aria-selected="false">Django</a>
<a class="nav-item nav-link text-white" id="nav-contact-tab" data-toggle="tab" href="#nav-contact" role="tab" aria-controls="nav-contact" aria-selected="false">React</a>
<a class="nav-item nav-link text-white" id="nav-about-tab" data-toggle="tab" href="#nav-about" role="tab" aria-controls="nav-about" aria-selected="false">Wordpress</a>
</div>
</nav>
<div class="tab-content py-3 px-3 px-sm-0" id="nav-tabContent">
<div class="tab-pane fade show active" id="nav-home" role="tabpanel" aria-labelledby="nav-home-tab">
<div class="card-columns">
<div class="card border-0 padding-0">
<a href="https://whos-arghya.w3spaces.com/" target="_blank" >
<img class="card-img-top" src="h1.png" alt="">
</a>
</div>
<div class="card border-0 padding-0">
<a href="https://github.com/Into-Y0u/ImgGallery" target="_blank" >
<img class="card-img-top" src="h2.png" alt="">
</a>
</div>
</div>
</div>
<div class="tab-pane fade" id="nav-profile" role="tabpanel" aria-labelledby="nav-profile-tab">
<div class="card-columns">
<div class="card border-0 padding-0">
<a href="https://github.com/Into-Y0u/ytproj2" target="_blank" >
<img class="card-img-top" src="d1.png" alt="">
</a>
</div>
</div>
</div>
<div class="tab-pane fade" id="nav-contact" role="tabpanel" aria-labelledby="nav-contact-tab">
<div class="card-columns">
<div class="card border-0 padding-0">
<a href="https://filmophile.netlify.app/" target="_blank" >
<img class="card-img-top" src="r1.png" alt="">
</a>
</div>
<div class="card border-0 padding-0">
<a href="https://covidcounterreact.herokuapp.com/" target="_blank" >
<img class="card-img-top" src="r2.png" alt="">
</a>
</div>
<div class="card border-0 padding-0">
<a href="https://dayplanner-df160.web.app/" target="_blank" >
<img class="card-img-top" src="r3.png" alt="">
</a>
</div>
</div>
</div>
<div class="tab-pane fade" id="nav-about" role="tabpanel" aria-labelledby="nav-about-tab">
<div class="card-columns">
<div class="card border-0 padding-0">
<a href=" https://www.linkedin.com/posts/arghyadev-sarkar_startup-digital-website-activity-6784094225446383616-2cNu" target="_blank" >
<img class="card-img-top" src="w.png" alt="">
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- port folio section ends -->
<!-- contact section starts -->
<div class="contact_section" id = "contact_section" >
<div class="container">
<div class="row m-0">
<div class= "col-lg-6 col-md-6 col-ms-12 col-xs-12">
<div>
<h3 class="heading">Contact Me <span style="color: #F87652;">.</span></h3>
<hr>
<p>Feel free to contact with me </p>
<form action="mailto:[email protected]" method = "post" enctype ="text/plain" >
<div class="form-group">
<input type="text" class="form-control" placeholder="Your Name">
</div>
<div class="form-group">
<input type="text" class="form-control" placeholder="Your Email">
</div>
<div class="form-group">
<input type="text" class="form-control" placeholder="Subject">
</div>
<div class="form-group">
<textarea class="form-control" placeholder="Type your Message ..."></textarea>
</div>
<div class="form-group">
<button class="btn btn-light animate_animated" value="Send" type ="submit">Submit</button>
</div>
</form>
</div>
</div>
<div class= "col-lg-6 col-md-6 col-ms-12 col-xs-12">
<div>
<ul class="list-unstyled">
<li>
<i class="fa fa-envelope-o"></i> [email protected]
</li>
<!-- <li>
<i class="fa fa-phone"></i> +91 8617227083
</li> -->
</ul>
</div>
<div class = "map_wrapper">
<div class="mapouter"><div class="gmap_canvas"><iframe width="525" height="327" id="gmap_canvas" src="https://maps.google.com/maps?q=Kolkata%20&t=&z=13&ie=UTF8&iwloc=&output=embed" frameborder="0" scrolling="no" marginheight="0" marginwidth="0"></iframe><a href="https://getasearch.com">getasearch</a><br><style>.mapouter{position:relative;text-align:right;height:327px;width:525px;}</style><a href="https://www.embedgooglemap.net">embed google map html</a><style>.gmap_canvas {overflow:hidden;background:none!important;height:327px;width:525px;}</style></div></div>
</div>
</div>
</div>
</div>
</div>
<!-- footer section -->
<div class="footer-area">
<div class="container">
<div class="row py-5">
<div class="logo-area col-lg-4 col-md-4 col-sm-12 col-12">
<a href="#" class="navbar-brand text-white" >
Who's Arghya <span style="color: #F87652;">??</span>
</a>
<p>
Feel free to Text me Whenever you Like
</p>
<div class="links">
<i onclick="window.location.href = 'https://www.facebook.com/ArghyaTheOne' ; " class="fa fa-facebook-square animate_animated"></i>
<i onclick="window.location.href = 'https://www.instagram.com/arghya_tlf/' ; " class="fa fa-instagram px-2.45 animate_animated"></i>
<i onclick="window.location.href = 'https://www.linkedin.com/in/arghyadev-sarkar/' ; " class="fa fa-linkedin-square animate_animated"></i>
<i onclick="window.location.href = 'https://www.youtube.com/channel/UChR5eV_Qfa4mKE7nYpQjKpw' ; " class="fa fa-youtube-square animate_animated"></i>
</div>
</div>
<div class=" col-lg-4 col-md-4 col-sm-12 col-12 column">
<h4 class="heading">Skills <span style="color: #F87652;">.</span></h4>
<ul class="list-group">
<li class="list-group-item border-0 bg-transparent animate_animated">
<i class="fa fa-chevron-right"></i><span> HTML , CSS , Bootstrap & JS</span>
</li>
<li class="list-group-item border-0 bg-transparent">
<i class="fa fa-chevron-right"></i><span> Pyhton , C/C++ , Kotlin </span>
</li>
<li class="list-group-item border-0 bg-transparent">
<i class="fa fa-chevron-right"></i><span> ReactJs , Django</span>
</li>
<li class="list-group-item border-0 bg-transparent">
<i class="fa fa-chevron-right"></i><span> Wordpress , Blogger</span>
</li>
</ul>
</div>
<div class="col-lg-4 col-md-4 col-sm-12 col-12 column">
<h4 class="heading">Useful Links <span style="color: #F87652;">.</span></h4>
<ul class="list-group">
<li class="list-group-item border-0 bg-transparent">
<i class="fa fa-chevron-right" onclick="window.location.href = 'https://www.linkedin.com/in/arghyadev-sarkar/' ; " ></i><span> LinkedIN</span>
</li>
<li class="list-group-item border-0 bg-transparent">
<i class="fa fa-chevron-right" onclick="window.location.href = 'https://www.youtube.com/channel/UChR5eV_Qfa4mKE7nYpQjKpw' ; " ></i><span> Youtube</span>
</li>
<li class="list-group-item border-0 bg-transparent">
<i class="fa fa-chevron-right" onclick="window.location.href = 'https://night-owlss.blogspot.com/' ; " ></i><span> Blogger</span>
</li>
<li class="list-group-item border-0 bg-transparent">
<i class="fa fa-chevron-right"></i><span> SoundCloud</span>
</li>
</ul>
</div>
</div>
</div>
</div>
<div id="particles-js"></div>
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<script>
particlesJS.load("particles-js", "particles.json", function () {
console.log("particles.json loaded...");
});
</script>
<script type="text/javascript" src="app.js"></script>
<script type="text/javascript" src="particles.js"></script>
</body>
</html>