-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
619 lines (602 loc) Β· 21.9 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
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=UA-121417321-2"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "UA-121417321-2");
</script>
<!-- Required meta tags -->
<meta charset="utf-8" />
<title>Akash Giri</title>
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<!-- Search engine SEO meta tags -->
<meta
name="keywords"
content="Akash Giri,akashgiri,akashgiricse,Akash,Giri,Freelancer,Freelancing,Software Engineer,Software Developer, Online Educator"
/>
<meta
name="description"
content="Software Engineer. I learn, design, and code software products and services."
/>
<meta name="author" content="Akash Giri" />
<!-- Twitter card -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@akashgiricse" />
<meta name="twitter:title" content="Akash Giri" />
<meta
name="twitter:description"
content="Software Engineer. I learn, design, and code software products and services."
/>
<meta
name="twitter:image"
content="https://akashgiri.com/assets/img/profile.jpeg"
/>
<meta name="twitter:creator" content="@akashgiricse" />
<!-- Facebook and other social media card -->
<meta name="og:title" property="og:title" content="Akash Giri" />
<meta name="og:url" property="og:url" content="https://akashgiri.com" />
<meta name="og:type" property="og:type" content="website" />
<meta
name="og:description"
property="og:description"
content="Software Engineer. I learn, design, and code software products and services."
/>
<meta
name="og:image"
property="og:image"
content="https://akashgiri.com/assets/img/profile.jpeg"
/>
<!-- meta tags for indexing on search engine -->
<meta name="robots" content="index, follow" />
<meta name="googlebot" content="index, follow" />
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="assets/css/bootstrap.min.css" />
<!-- Font Awesome JS -->
<script defer src="assets/js/all.min.js"></script>
<link
href="https://fonts.googleapis.com/css?family=Open+Sans|Rubik"
rel="stylesheet"
/>
<link rel="stylesheet" href="assets/css/main.css" />
<link rel="shortcut icon" type="image/png" href="assets/img/favicon.png" />
</head>
<body data-spy="scroll" data-target="#navScrollspy">
<nav
class="navbar navbar-dark bg-danger navbar-expand-md fixed-top font-weight-bold"
>
<div class="container">
<a href="" class="navbar-brand"
><i class="fa fa-code" aria-hidden="true"></i> AKASH GIRI</a
>
<button
type="button"
class="navbar-toggler navbar-toggler-right"
data-toggle="collapse"
data-target="#navbarNav"
aria-controls="navbarNav"
aria-expanded="false"
aria-label="Toggle Navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav" id="navScrollspy">
<li class="nav-item">
<a href="#section-jumbotron" class="nav-link">HOME</a>
</li>
<li class="nav-item">
<a href="#section-about" class="nav-link">ABOUT ME</a>
</li>
<li class="nav-item">
<a href="#section-youtube-intro" class="nav-link">YOUTUBE</a>
</li>
<li class="nav-item">
<a href="#section-around-the-web" class="nav-link">FOLLOW ME</a>
</li>
<li class="nav-item">
<a href="#section-newsletter" class="nav-link">NEWSLETTER</a>
</li>
<li class="nav-item">
<a href="#section-support-me" class="nav-link">SUPPORT</a>
</li>
<li class="nav-item">
<a href="#section-contact" class="nav-link">CONTACT</a>
</li>
</ul>
<span class="ml-auto">
<a
href="assets/resume/Akash_Giri_Resume.pdf"
target="_blank"
class="text-white h5"
><i class="fas fa-download" aria-hidden="true"></i> RESUME</a
>
</span>
</div>
</div>
</nav>
<!-- Testing if this picture will be included in google search or not-->
<img
src="https://akashgiri.com/assets/img/profile.jpeg"
alt="Akash Giri Profile Picture"
style="display: none;"
/>
<section
id="section-jumbotron"
class="jumbotron jumbotron-fluid text-white d-flex justify-content-center align-items-center"
>
<div class="container text-center">
<h1 class="display-1">AKASH GIRI</h1>
<h2>
Software Engineer | Freelancer | Online Educator
</h2>
<p class="lead">
I learn, design, and code software products and services.
</p>
<a
href="https://akashgiri.com/resume/"
class="btn btn-lg btn-danger"
target="_blank"
>Resume <i class="fas fa-external-link-alt" aria-hidden="true"></i
></a>
</div>
</section>
<div class="container">
<section id="section-about">
<h2 class="display-4 text-center">About me</h2>
<p class="lead text-justify">
My path towards software development began during my college years, when I gained experience in Python/Django for
academic projects. Subsequently, during an internship, I expanded my skills into Ruby on Rails, before eventually
finding my niche in JavaScript/NodeJs. Presently, my focus lies on full-stack development.
</p>
<p class="lead text-justify">
Along the way, I've enjoyed sharing the knowledge I've gained through my professional and personal experiences via
blog posts and video tutorials. I also make occasional contributions to open-source projects, which help me stay
up-to-date with the latest developments in programming and software development.
</p>
</section>
</div>
<section id="section-youtube-intro">
<div class="jumbotron jumbotron-youtube">
<div class="container">
<div class="row align-items-center">
<div class="col-12 col-lg-8 mb-3 mb-lg-0">
<div class="embed-responsive embed-responsive-16by9">
<iframe
class="embed-responsive-item youtube-intro-embed"
src="https://www.youtube.com/embed/videoseries?list=PL8jY2Zjkg2dMSk9QbeaBaFZN_4ZxXRnsS"
allowfullscreen
style="border: 1px solid #ff0000; border-radius: 2px;"
></iframe>
</div>
</div>
<div class="col-12 col-lg-4">
<h1>
<b>
<i class="fab fa-youtube text-danger" aria-hidden="true"></i>
YouTube
</b>
</h1>
<p class="lead text-justify">
Interested in software development? Subscribe to my YouTube channel for courses that cover different
aspects of coding and development. You'll gain access to valuable resources and insights to enhance your skills.
</p>
<a
type="button"
class="btn btn-lg btn-danger d-block d-sm-inline-block mb-3 mb-sm-0 mr-2"
href="https://www.youtube.com/c/AkashGiri?sub_confirmation=1"
target="_blank"
>
Subscribe
</a>
<a
type="button"
class="btn btn-lg btn-outline-danger d-block d-sm-inline-block mb-sm-0"
href="https://www.youtube.com/c/AkashGiri"
target="_blank"
>
Visit Channel
</a>
</div>
</div>
</div>
</div>
</section>
<div class="container">
<section id="section-around-the-web">
<h2 class="display-4 text-center">Around the web</h2>
<p class="lead text-center mb-0">
Get to know more about me on these platforms
</p>
<div class="row">
<div
class="col-12 col-sm-6 col-lg-3 d-flex flex-column align-items-center mt-0"
>
<a
class="social-icon"
href="https://dev.to/akashgiri"
target="_blank"
><i class="fab fa-dev" aria-hidden="true"></i
></a>
</div>
<div
class="col-12 col-sm-6 col-lg-3 d-flex flex-column align-items-center"
>
<a
class="social-icon"
href="https://twitter.com/akashgiricse"
target="_blank"
><i class="fab fa-twitter" aria-hidden="true"></i
></a>
</div>
<div
class="col-12 col-sm-6 col-lg-3 d-flex flex-column align-items-center"
>
<a
class="social-icon"
href="https://www.linkedin.com/in/akashgiricse/"
target="_blank"
><i class="fab fa-linkedin" aria-hidden="true"></i
></a>
</div>
<div
class="col-12 col-sm-6 col-lg-3 d-flex flex-column align-items-center"
>
<a
class="social-icon"
href="https://github.com/akashgiricse"
target="_blank"
><i class="fab fa-github text-dark" aria-hidden="true"></i
></a>
</div>
</div>
</section>
</div>
<section id="section-newsletter" class="bg-danger">
<div class="container">
<form
class="py-5 text-white"
action="https://app.convertkit.com/forms/1453761/subscriptions"
method="post"
data-sv-form="1453761"
data-uid="5c1babdb01"
data-format="inline"
data-version="5"
>
<h2 class="text-center">Get notified of new updates</h2>
<p>
Receive the latest updates and offers by signing up to my newsletter
</p>
<div class="row">
<div class="col-12 col-sm-6">
<div class="form-group">
<label for="input-name" class="sr-only">Your name:</label>
<input
type="text"
class="form-control"
name="fields[first_name]"
placeholder="First-name Last-name"
id="input-name"
/>
</div>
</div>
<div class="col-12 col-sm-6">
<div class="form-group">
<label for="input-email" class="sr-only">Your email:</label>
<input
type="email"
class="form-control"
name="email_address"
placeholder="mail@example.com"
id="input-email"
/>
</div>
</div>
</div>
<div class="d-flex justify-content-between">
<small class="form-text"
><b><i>YOUR EMAIL ADDRESS WILL NEVER BE SHARED</i></b>
</small>
<button type="submit" class="btn btn-dark" data-element="submit">
Sign up
</button>
</div>
</form>
</div>
</section>
<div class="container">
<section id="section-support-me">
<h2 class="display-4 text-center">
Support me
</h2>
<p class="lead text-center">
Your little contribution would mean a world to me. Consider supporting
if you like my work
</p>
<div class="row">
<div
class="col-12 col-sm-6 col-lg-3 d-flex flex-column align-items-center mb-5"
>
<a href="https://www.paypal.me/akashgiricse" target="_blank"
><img
class="support-image"
style="border: 1px solid #ff0000; border-radius: 2px;"
src="./assets/img/paypal.png"
alt="Pay with PayPal"
/></a>
</div>
<div
class="col-12 col-sm-6 col-lg-3 d-flex flex-column align-items-center mb-5"
>
<a href="https://www.patreon.com/akashgiri" target="_blank"
><img
class="support-image"
src="./assets/img/become_a_patron_button@2x.png"
alt="Become a Patron"
/></a>
</div>
<div
class="col-12 col-sm-6 col-lg-3 d-flex flex-column align-items-center mb-5"
>
<link
href="https://fonts.googleapis.com/css?family=Cookie"
rel="stylesheet"
/><a
class="bmc-button"
target="_blank"
href="https://www.buymeacoffee.com/akashgiri"
><img
class="support-image"
src="https://cdn.buymeacoffee.com/buttons/bmc-new-btn-logo.svg"
alt="Buy me a coffee"
/><span style="margin-left: 5px; font-size: 28px !important;"
>Buy me a coffee</span
></a
>
</div>
<div
class="col-12 col-sm-6 col-lg-3 d-flex flex-column align-items-center mb-5"
>
<a href="#" target="_blank" data-toggle="modal" data-target="#modal"
><img
class="support-image"
style="border: 1px solid #ff0000; border-radius: 2px;"
src="./assets/img/bhimupi.jpg"
alt="Pay with BHIM UPI"
/></a>
</div>
<div
class="modal fade"
id="modal"
tabindex="-1"
role="dialog"
aria-labelledby="modalTitle"
aria-hidden="true"
>
<div class="modal-dialog modal-sm" role="document">
<div class="modal-content">
<div class="modal-body my-2">
<h2 class="text-center">
<span class="badge badge-danger"
><b>akashgirisbi@ybl</b></span
>
</h2>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
<section id="section-contact" class="bg-danger">
<div class="container">
<form
class="py-5 text-white"
action="https://formspree.io/akashgiricse@gmail.com"
method="POST"
>
<h2 class="text-center">Contact me</h2>
<p>
Let's get in touch for any kind of support, help or feedback
</p>
<div class="row">
<div class="col-12 col-sm-6">
<div class="form-group">
<label for="input-name" class="sr-only">Your name:</label>
<input
type="text"
class="form-control"
name="name"
placeholder="First-name Last-name"
aria-label="First-name Last-name"
aria-describedby="name"
required
id="input-name"
/>
</div>
</div>
<div class="col-12 col-sm-6">
<div class="form-group">
<label for="input-email" class="sr-only">Your email:</label>
<input
type="email"
class="form-control"
name="email"
placeholder="mail@example.com"
aria-label="Your email"
aria-describedby="email"
required
id="input-email"
/>
</div>
</div>
<div class="col-12 col-sm-6">
<div class="form-group">
<label for="input-name" class="sr-only">Your message:</label>
<textarea
id="textarea"
class="form-control"
rows="3"
name="message"
placeholder="Write your message here..."
aria-label="Your message"
aria-describedby="message"
required=""
></textarea>
</div>
</div>
</div>
<div class="d-flex justify-content-between">
<small class="form-text"></small>
<button type="submit" class="btn btn-dark">
<i class="fas fa-paper-plane" aria-hidden="true"></i> Send Message
</button>
</div>
</form>
</div>
</section>
<footer>
<div class="container py-3 py-sm-5">
<div class="row">
<div class="col-12 col-sm-6 col-lg-3">
<h6>Quick Links</h6>
<ul class="list-unstyled">
<li><a href="#section-jumbotron">Home</a></li>
<!-- <li><a href="#">What's new?</a></li> -->
<li><a href="#section-support-me">Support</a></li>
<li><a href="#section-newsletter">Newsletter</a></li>
<!-- <li><a href="#">Cancel subscription</a></li> -->
</ul>
</div>
<div class="col-12 col-sm-6 col-lg-3">
<h6>Information</h6>
<ul class="list-unstyled">
<li>
<a href="https://akashgiri.com/blog/" target="_blank"
>Personal Blog</a
>
</li>
<li>
<a href="https://akashgiri.com/resume/" target="_blank"
>Resume Page</a
>
</li>
<li><a href="#section-about">About me</a></li>
<li><a href="#section-contact">Contact</a></li>
</ul>
</div>
<div class="col-12 col-sm-6 col-lg-3">
<h6>Follow Me</h6>
<ul class="list-unstyled">
<!-- <li>
<a href="#"
><i class="fab fa-facebook-square text-dark"></i> Facebook</a
>
</li> -->
<!-- <li>
<a
href="https://www.instagram.com/akashgiricse/"
target="_blank"
><i
class="fab fa-instagram text-muted"
aria-hidden="true"
></i>
Instagram</a
>
</li> -->
<li>
<a href="https://twitter.com/akashgiricse" target="_blank"
><i class="fab fa-twitter text-muted" aria-hidden="true"></i>
Twitter</a
>
</li>
<li>
<a href="https://www.youtube.com/c/AkashGiri" target="_blank"
><i class="fab fa-youtube text-muted" aria-hidden="true"></i>
YouTube</a
>
</li>
<li>
<a
href="https://www.linkedin.com/in/akashgiricse/"
target="_blank"
><i class="fab fa-linkedin text-muted" aria-hidden="true"></i>
LinkedIn</a
>
</li>
</ul>
</div>
<div class="col-12 col-sm-6 col-lg-3">
<h6>My location:</h6>
<address>
<!-- <strong>CamApp</strong><br /> -->
Bengaluru<br />
Karnataka 560038<br />
<!-- <i class="fa fa-fw fa-phone" aria-hidden="true"></i> -->
<!-- <span class="sr-only">Telephone:</span
><a href="tel:+919999999999">(+91) 9999999999</a><br /> -->
<i class="fa fa-fw fa-inbox text-muted" aria-hidden="true"></i>
<span class="sr-only">Mail:</span
><a href="mailto:contact@akashgiri.com">contact@akashgiri.com</a>
</address>
</div>
</div>
<div class="row">
<div class="col-12 col-sm-6 col-lg-9">
<ul class="list-inline text-muted">
<li class="list-inline-item">
©
<script type="text/javascript">
document.write(new Date().getFullYear());
</script>
Akash Giri.
</li>
<li class="list-inline-item">All rights reserved.</li>
</ul>
</div>
</div>
</div>
</footer>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script
src="https://code.jquery.com/jquery-3.2.1.slim.min.js"
integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin="anonymous"
></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.3/umd/popper.min.js"
integrity="sha384-vFJXuSJphROIrBnz7yo7oB41mKfc8JzQZiCq4NCceLEaO4IHwicKwpJf9c9IpFgh"
crossorigin="anonymous"
></script>
<script
src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/js/bootstrap.min.js"
integrity="sha384-alpBpkh1PFOepccYVYDB4do5UnbKysX5WZXm3XxPqe5iKTfUKjNkCk9SaVuEZflJ"
crossorigin="anonymous"
></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/smooth-scroll/12.1.5/js/smooth-scroll.min.js"
integrity="sha256-MMt0/21G3z0Zg4ET1kI3HC9npItDowkitRDVr0FhCxA="
crossorigin="anonymous"
></script>
<script type="text/javascript">
$(function () {
var scroll = new SmoothScroll('a[href*="#section-"]');
});
$(".navbar-nav>li>a").on("click", function () {
$(".navbar-collapse").collapse("hide");
});
</script>
</body>
</html>