-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
636 lines (564 loc) · 28.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
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
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
<!DOCTYPE html>
<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">
<meta name="description" content="">
<meta name="author" content="">
<title>SKA</title>
<link rel="stylesheet" href="assets/css/color.css">
<link href="https://fonts.googleapis.com/css?family=Roboto|Roboto+Mono|Inconsolata" rel="stylesheet">
<link href="https://cdn.materialdesignicons.com/2.0.46/css/materialdesignicons.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://s.pageclip.co/v1/pageclip.css" media="screen">
</head>
<body>
<!--Switcher-->
<div class="style-switcher">
<span class="style-switcher__control"></span>
<div class="style-switcher__list">
<a class="style-switcher__link style-switcher__link--color"></a>
<a class="style-switcher__link style-switcher__link--mono"></a>
</div>
</div>
<!--Switcher-->
<!--Main menu-->
<div class="menu">
<div class="container">
<div class="row">
<div class="menu__wrapper d-none d-lg-block col-md-12">
<nav class="">
<ul>
<li><a href="#hello">Hello</a></li>
<li><a href="#resume">Resume</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<!-- <li><a href="#testimonials">testimonials</a></li> -->
<li><a href="#blog">Latest Posts</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</div>
<div class="menu__wrapper col-md-12 d-lg-none">
<button type="button" class="menu__mobile-button">
<span><i class="fa fa-bars" aria-hidden="true"></i></span>
</button>
</div>
</div>
</div>
</div>
<!--Main menu-->
<!-- Mobile menu -->
<div class="mobile-menu d-lg-none">
<div class="container">
<div class="mobile-menu__close">
<span><i class="mdi mdi-close" aria-hidden="true"></i></span>
</div>
<nav class="mobile-menu__wrapper">
<ul>
<li><a href="#hello">Hello</a></li>
<li><a href="#resume">Resume</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<!-- <li><a href="#testimonials">testimonials</a></li> -->
<li><a href="#blog">blog</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</div>
</div>
<!-- Mobile menu -->
<!--Header-->
<header class="main-header">
<div class="container">
<div class="row personal-profile">
<div class="col-md-4 personal-profile__avatar">
<img class="" src="assets/img/pic_ska.png" alt="avatar">
</div>
<div class="col-md-8">
<p class="personal-profile__name">Sriram Karthik Akella</p>
<p class="personal-profile__work">Computer Science Student 💻</p>
<div class="personal-profile__contacts">
<dl class="contact-list contact-list__opacity-titles">
<dt>Age:</dt>
<dd>21</dd>
<dt>Phone:</dt>
<dd><a href="tel:8254614747">+1 (825) 461 4747</a></dd>
<dt>Email:</dt>
<dd><a href="mailto:[email protected]">[email protected]</a></dd>
<dt>Address:</dt>
<dd>Edmonton, AB, Canada</dd>
</dl>
</div>
<p class="personal-profile__social">
<a href="https://github.com/skarthik7" target="_blank"><i class="fa fa-github"></i></a>
<a href="https://www.linkedin.com/in/sriram-karthik-akella-99b165116/" target="_blank"><i class="fa fa-linkedin-square"></i></a>
<a href="https://www.facebook.com/sriramkarthik.akella.7/" target="_blank"><i class="fa fa-facebook-square"></i></a>
</p>
</div>
</div>
</div>
</header>
<!--Header-->
<!--Hello-->
<section id="hello" class="container section">
<div class="row">
<div class="col-md-10">
<h2 id="hello_header" class="section__title">Hello World!_</h2>
<p class="section__description">
Hey there! 👋 I'm a fourth-year Computing Science major at the University of Alberta, set to graduate in April 2025. 💻 My journey into the world of computers started at a young age, sparked by a fascination with both software and hardware. This early curiosity 🔍 evolved into a deep passion for technology, which led me to pursue a degree in Computing Science.
<br><br>I’ve gained valuable experience through two SWE internships 💼.
<br><br>As I approach my graduation in April 2025, I’m seeking full-time opportunities in Software Engineering or related roles where I can apply my skills to build scalable, efficient solutions. I’m eager to contribute to impactful projects, grow as an engineer, and collaborate with talented teams
<br><br>Beyond academics, I have a deep love for problem-solving 🧩, which drives my enthusiasm for competitive programming on LeetCode. Feel free to explore my LeetCode profile to check out my recent activity <a href="https://leetcode.com/u/skarthik7/" target="_blank">here</a>.
</p>
<br>
<a href="assets/Sriram's Resume.pdf" target="_blank" class="section_btn site-btn"><img src="assets/img/img_btn_icon.png" alt="">Download CV</a>
</div>
</div>
</section>
<!--Hello-->
<hr>
<!--Resume-->
<section id="resume" class="container section">
<div class="row">
<div class="col-md-10">
<h2 id="resume_header" class="section__title">Resume_</h2>
<p class="section__description">
I am currently enrolled in the Science Internship Program (co-op) at my university, which allows me to work full-time for 4, 8,
12 or 16 months. The classes I have taken and the projects I have worked on cover a realm of Computer Science fields, from App
Development and Web Development to Databases and Machine Learning & Artificial Intelligence. Now, I am looking forward
to gaining practical experience where I can apply the Computer Science knowledge I have gained into real-world applications.
</p>
</div>
</div>
<div class="row">
<div class="col-md-8 section__resume resume-list">
<h3 class="resume-list_title">education</h3>
<div class="resume-list__block">
<p class="resume-list__block-title">University of Alberta </p>
<p class="resume-list__block-date">September 2020 - April 2025</p>
<p>
<b>Bachelor of Science Specialization - Computing Science</b>
</p>
</div>
<!-- <div class="resume-list__block">
<p class="resume-list__block-title">Stanford University</p>
<p class="resume-list__block-date">2023</p>
<p>
Algorithms Specialization
</p>
</div> -->
<div class="resume-list__block">
<p class="resume-list__block-title">Delhi Public School</p>
<p class="resume-list__block-date">2006 - 2020</p>
<p>
Central Board of Secondary Education of India - Math Physics Chemistry with Computer Science
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-8 section__resume resume-list">
<h3 class="resume-list_title">employment</h3>
<div class="resume-list__block">
<p class="resume-list__block-title">University of Alberta</p>
<p class="resume-list__block-date">January 2022 - Present</p>
<p>
I am currently working as a Teaching Assistant for an undergrad CS course.<br>
- Conducted lab sessions every week and assisted students in one on one and small
group setting.<br>
- Assisted teaching staff in designing the course.
</p>
</div>
<div class="resume-list__block">
<p class="resume-list__block-title">Ericsson Inc.</p>
<p class="resume-list__block-date">Septemer 2023 - April 2024 </p>
<p>
As a SWE Intern at Ericsson, I am involved in two significant projects:
<br>- Data Manipulation with Python and PostgreSQL: Developed and optimized Python scripts for data extraction and transformation from 50+ radio towers; improved PostgreSQL database performance by 30%; designed and implemented custom data visualization tools for stakeholder analysis.
<br>- Web Dev with Flask/FastAPI and EDS: Engineered and maintained 10+ web applications using Flask/FastAPI; integrated Ericsson Design System (EDS) to enhance UI/UX, achieving 95% consistency across platforms.
</p>
</div>
<div class="resume-list__block">
<p class="resume-list__block-title">City of Edmonton</p>
<p class="resume-list__block-date">January 2023 - August 2023</p>
<p>
As a SWE Intern in the Network Operations team, I was responsible for the following:
<br>- Network Operations Automation: Developed automation scripts that reduced manual networking tasks by 40%, significantly improving operational efficiency.
<br>- Network Data Manipulation: Engineered tools to manipulate and process network data files, enhancing data accuracy and accessibility for the team.
</p>
</div>
<div class="resume-list__block">
<p class="resume-list__block-title">Kuwait Oil Company</p>
<p class="resume-list__block-date">June 2019 - August 2019</p>
<p>
I have worked as an IT Intern at Kuwait Oil Company receiving practical knowledge on Database and Server Hardware, Cloud Computing, ITIL and ISO Standards, Operating Systems & Computer Networks. For a term of one week, I had also assisted at the Service Desk of the IT Department of Diyar United Company to help clients by troubleshooting their issues.
</p>
</div>
</div>
</div>
<div class="row section__resume progress-list js-progress-list">
<div class="col-md-12">
<h3 class="progress-list__title">general skills</h3>
</div>
<div class="col-md-5 mr-auto">
<div class="progress-list__skill">
<p>
<span class="progress-list__skill-title">python</span>
<span class="progress-list__skill-value">90%</span>
</p>
<div class="progress">
<div class="progress-bar" role="progressbar" aria-valuenow="90" aria-valuemin="0" aria-valuemax="100" >
</div>
</div>
</div>
<div class="progress-list__skill">
<p>
<span class="progress-list__skill-title">java</span>
<span class="progress-list__skill-value">80%</span>
</p>
<div class="progress">
<div class="progress-bar" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
<div class="progress-list__skill">
<p>
<span class="progress-list__skill-title">flutter</span>
<span class="progress-list__skill-value">90%</span>
</p>
<div class="progress">
<div class="progress-bar" role="progressbar" aria-valuenow="90" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
<div class="progress-list__skill">
<p>
<span class="progress-list__skill-title">SQL</span>
<span class="progress-list__skill-value">80%</span>
</p>
<div class="progress">
<div class="progress-bar" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
</div>
<div class="col-md-5 mr-auto">
<div class="progress-list__skill">
<p>
<span class="progress-list__skill-title">assembly</span>
<span class="progress-list__skill-value">60%</span>
</p>
<div class="progress">
<div class="progress-bar" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
<div class="progress-list__skill">
<p>
<span class="progress-list__skill-title">c</span>
<span class="progress-list__skill-value">70%</span>
</p>
<div class="progress">
<div class="progress-bar" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
<div class="progress-list__skill">
<p>
<span class="progress-list__skill-title">git</span>
<span class="progress-list__skill-value">80%</span>
</p>
<div class="progress">
<div class="progress-bar" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
<div class="progress-list__skill">
<p>
<span class="progress-list__skill-title">microsoft office & google suite</span>
<span class="progress-list__skill-value">90%</span>
</p>
<div class="progress">
<div class="progress-bar" role="progressbar" aria-valuenow="90" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
</div>
</div>
</section>
<!--Resume-->
<!--Portfolio-->
<section id="portfolio" class="container section">
<div class="row">
<div class="col-md-12">
<h2 id="portfolio_header" class="section__title">My projects_</h2>
</div>
</div>
<div class="row portfolio-menu">
<div class="col-md-12">
<nav>
<ul>
<li><a href="" data-portfolio-target-tag="all">all</a></li>
<li><a href="" data-portfolio-target-tag="mobile apps">mobile apps</a></li>
<li><a href="" data-portfolio-target-tag="ai-ml">ai/ml</a></li>
<li><a href="" data-portfolio-target-tag="other">other</a></li>
</ul>
</nav>
</div>
</div>
<div class="portfolio-cards">
<div class="row project-card" data-toggle="modal" data-target="#portfolioModal" data-portfolio-tag="mobile apps">
<div class="col-md-6 col-lg-5 project-card__img">
<img class="" src="assets/img/testproj1.png" alt="project-img">
</div>
<div class="col-md-6 col-lg-7 project-card__info">
<h3 class="project-card__title">Qify </h3>
<p class="project-card__description">
Developed a mobile application (using Flutter & Firebase) to ease the queuing system at hospitals.<br>
Includes appointment (scheduling, rescheduling, deleting) and video call features.<br>
This application was developed as part of Kuwait Foundation of Advanced Sciences (KFAS)'s Virtual Hackathon.<br>
As Team MacBytes, we stood in the top 5 teams (out of 40+ who were selected to participate) to the final round.
</p>
<p class="project-card__stack">Used stack:</p>
<ul class="tags">
<li>flutter</li>
<li>firebase</li>
</ul>
<a href="https://github.com/skarthik7/Qify#-qify-" class="project-card__link">Source Code & Documentation</a>
</div>
</div>
<div class="row project-card" data-toggle="modal" data-target="#portfolioModal" data-portfolio-tag="ai-ml">
<div class="col-md-6 col-lg-5 project-card__img">
<img class="" src="assets/img/testproj2.png" alt="project-img">
</div>
<div class="col-md-6 col-lg-7 project-card__info">
<h3 class="project-card__title">Smart Eye</h3>
<p class="project-card__description">
Used AI to develop an assistive device for visually impaired people called 'The Smart Eye' which can reduce their dependence on others in terms of mobility.
<br>Detects and recognizes objects in the field of view of the user. Uses CloudSight API for image recognition.
</p>
<p class="project-card__stack">Used technologies:</p>
<ul class="tags">
<li>python</li>
<li>cloudsight API</li>
<li>raspberry pi</li>
</ul>
<a href="https://youtu.be/M2dNDm7O4Gk" class="project-card__link"> Prototype Demo</a>
<a href="https://makerfaire.com/maker/entry/65269/" class="project-card__link">Participation in MakerFaire,</a>
</div>
</div>
<div class="row project-card" data-toggle="modal" data-target="#portfolioModal" data-portfolio-tag="other">
<div class="col-md-6 col-lg-5 project-card__img">
<img class="" src="assets/img/proj3.jpeg" alt="project-img">
</div>
<div class="col-md-6 col-lg-7 project-card__info">
<h3 class="project-card__title">COVID Tracker</h3>
<p class="project-card__description">
Python program that tracks COVID cases.
<br>Uses an open source API: covid19api.com.
<p class="project-card__stack">Used stack:</p>
<ul class="tags">
<li>python</li>
</ul>
<a href="https://github.com/skarthik7/COVID-Tracker#covid-tracker" class="project-card__link">Source code</a>
</div>
</div>
<div class="row project-card" data-toggle="modal" data-target="#portfolioModal" data-portfolio-tag="mobile apps">
<div class="col-md-6 col-lg-5 project-card__img">
<img class="" src="assets/img/proj4.jpeg" alt="project-img">
</div>
<div class="col-md-6 col-lg-7 project-card__info">
<h3 class="project-card__title">Smart Weather Application</h3>
<p class="project-card__description">
Displays the weather of a city (inputted by the user).<br>Uses an open source API from openweathermap.org<br>This application was made using Java.
<p class="project-card__stack">Used stack:</p>
<ul class="tags">
<li>java</li>
</ul>
<a href="https://github.com/skarthik7/smart_Weather_app" class="project-card__link">Source code</a>
</div>
</div>
</section>
<!--Portfolio-->
<!-- Testimonials-->
<!-- <div id="testimonials" class="section">
<div class="background slider-carousel" style="background-image: url(assets/img/img_bg_main.jpg);">
<div class="container">
<div id="carouselTestimonials" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselTestimonials" data-slide-to="0" class="active"></li>
<li data-target="#carouselTestimonials" data-slide-to="1"></li>
<li data-target="#carouselTestimonials" data-slide-to="2"></li>
</ol>
<div class="carousel-inner" role="listbox">
<div class="carousel-item active">
<div class="row">
<div class="col-md-10 col-sm-10 col-10 mr-auto ml-auto">
<p class="slider-carousel__title">Esakkivel Esakkiraja</p>
<p class="slider-carousel__caption">Project: Smart Eye & Qify</p>
<hr>
<p class="slider-carousel__description">Karthik is unquestionably one of the brightest students in the class and his work consistently reflects a level of insightfulness & attention to detail that is unique to him.
Karthik displays impressive logical thinking abilities and an intellectual curiosity.
He has proved his mettle by winning the
first prize and achieving Honour Certificate in Shaastrotsav in 2017, third prize in MakerFaire, a
science and Tech fair held in Kuwait.
He is always an active participant in debate & elocution who never hesitates to raise questions. </p>
</div>
</div>
</div>
<div class="carousel-item">
<div class="row">
<div class="col-md-10 col-sm-10 col-10 mr-auto ml-auto">
<p class="slider-carousel__title">Monniiesh Velumurgan</p>
<p class="slider-carousel__caption">Classmate</p>
<hr>
<p class="slider-carousel__description">I have been Sriram’s classmate at high school. During that time, I have seen Sriram grow into an outstanding individual who excels in both his academic and personal pursuits. Sriram is highly intelligent and has good analytical & communication skills. His overall intelligence is also reflected in his grades for the course. His perseverance and initiative are beyond his years and he is well loved by his peers, as well as all of our teachers. Sriram consistently seeks out constructive feedback so he can improve his skills. He is truly a stand-out individual who will impress everyone he meets. In my view Sriram will make an outstanding professional in the field he has chosen.</p>
</div>
</div>
</div>
<div class="carousel-item">
<div class="row">
<div class="col-md-10 col-sm-10 col-10 mr-auto ml-auto">
<p class="slider-carousel__title">Almer Muneer</p>
<p class="slider-carousel__caption">Project: Movie DB (CMPUT 291)</p>
<hr>
<p class="slider-carousel__description">Sriram is undoubtedly one of the smartest people I have come across with at the University of Alberta. He is very hardworking, smart and grasps concepts very easily. He has helped me in numerous occasions about Computing Science-mainly Python. We both have collaborated in CMPUT courses like CMPUT 175(Python Coding course) and CMPUT 291(File and Database management) and he has always made the work look very easy as he could solve problems with ease and help me in understanding how to go about solving them. </p>
</div>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#testimonials" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#testimonials" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
<div class="slider-carousel__circle">
<p><i class="fa fa-quote-right" aria-hidden="true"></i></p>
</div>
</div>
</div>
</div>
</div> -->
<!--Testimonials -->
<!--Blog-->
<section id="blog" class="container section">
<div class="row">
<div class="col-md-12">
<h2 id="blog_header" class="section__title">Latest Posts_</h2>
</div>
</div>
<div class="row post-cards">
<div class="col-md-4">
<iframe src="https://www.linkedin.com/embed/feed/update/urn:li:share:7106060677420613632" height="814" width="504" frameborder="0" allowfullscreen="" title="Embedded post"></iframe>
</div>
</div>
</section>
<!--Blog-->
<!--Contact-->
<div class="background" style="background-image: url(assets/img/img_bg_main.jpg)">
<div id="contact" class="container section">
<div class="row">
<div class="col-md-12">
<p id="contacts_header" class="section__title">Get in touch_</p>
</div>
</div>
<div class="row contacts">
<div class="col-md-5 col-lg-4">
<div class="contacts__list">
<dl class="contact-list">
<dt>Phone:</dt>
<dd><a href="tel:8254614747">+1 (825) 461 4747</a></dd>
<dt>Email:</dt>
<dd><a href="mailto:[email protected]">[email protected]</a></dd>
</dl>
</div>
<div class="contacts__social">
<ul>
<li><a href="https://www.linkedin.com/in/sriram-karthik-akella-99b165116/">Linkedin</a></li>
<li><a href="https://github.com/skarthik7">GitHub</a></li>
</ul>
</div>
</div>
<div class="col-md-7 col-lg-5">
<div class="contacts__form">
<p class="contacts__form-title">Or just write me a letter here_</p>
<form action="https://send.pageclip.co/niMhAHIpwD7WaRWvW7KYOPOjsTnnwDq6/contact-form-2511" class="pageclip-form">
<div class="form-group">
<input class="form-field js-field-name" name="name" type="text" placeholder="Your name" required>
<span class="form-validation"></span>
<span class="form-invalid-icon"><i class="mdi mdi-close" aria-hidden="true"></i></span>
</div>
<div class="form-group">
<input class="form-field js-field-email" name="email" type="email" placeholder="Your e-mail" required>
<span class="form-validation"></span>
<span class="form-invalid-icon"><i class="mdi mdi-close" aria-hidden="true"></i></span>
</div>
<div class="form-group">
<textarea class="form-field js-field-message" name="message" placeholder="Type the message here" required></textarea>
<span class="form-validation"></span>
<span class="form-invalid-icon"><i class="mdi mdi-close" aria-hidden="true"></i></span>
</div>
<!-- <button type="submit" class="pageclip-form__submit">
<span>Send</span>
</button> -->
<button class="site-btn site-btn--form" type="submit" >Send</button>
</form>
</div>
</div>
</div>
</div>
</div>
<!--Contact-->
<!-- Portfolio Modal
<div class="modal fade portfolio-modal" id="portfolioModal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body col-md-11 col-lg-9 ml-auto mr-auto">
<p class="portfolio-modal__title">Qify</p>
<img class="portfolio-modal__img" src="assets/img/proj1.jpeg" alt="modal_img">
<p class="portfolio-modal__description">
Developed a mobile application (using Flutter & Firebase) to ease the queuing system at hospitals.<br>
Includes appointment (scheduling, rescheduling, deleting) and video call features.<br>
This application was developed as part of Kuwait Foundation of Advanced Sciences (KFAS)'s Virtual Hackathon.<br>
As Team MacBytes, we stood in the top 5 teams (out of 40+ who were selected to participate) to the final round.
</p>
<div class="portfolio-modal__link">
<a href="">https://github.com/skarthik7/Qify#-qify-</a>
</div>
<div class="portfolio-modal__stack">
<p class="portfolio-modal__stack-title">Using stack:</p>
<ul class="tags">
<li>flutter</li>
<li>firebase</li>
</ul>
</div>
</div>
</div>
</div>
</div>
Portfolio Modal -->
<script src="assets/js/jquery-2.2.4.min.js"></script>
<script src="assets/js/popper.min.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<script src="assets/js/menu.js"></script>
<script src="assets/js/jquery.waypoints.js"></script>
<script src="assets/js/progress-list.js"></script>
<script src="assets/js/section.js"></script>
<script src="assets/js/portfolio-filter.js"></script>
<script src="assets/js/slider-carousel.js"></script>
<script src="assets/js/mobile-menu.js"></script>
<script src="assets/js/contacts.js"></script>
<script src="assets/js/mbclicker.min.js"></script>
<script src="assets/js/site-btn.js"></script>
<script src="assets/js/style-switcher.js"></script>
<script src="assets/js/popup.js"></script>
<script src="https://s.pageclip.co/v1/pageclip.js" charset="utf-8"></script>
</body>
</html>