-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
712 lines (610 loc) · 37 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
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Thumbnail -->
<meta property="og:image" content="mylogo.png">
<meta property="og:description" content="Computer Science Student at UCL">
<meta property="og:title" content="Sultan Rifqi">
<!-- Unicons -->
<link rel="stylesheet" href="https://unicons.iconscout.com/release/v4.0.0/css/line.css">
<!-- Swiper Css -->
<link rel="stylesheet" href="css/swiper-bundle.min.css">
<!-- Css -->
<link rel="stylesheet" href="css/styles.css">
<!-- Tab Logo -->
<link rel="shortcut icon" type="image/x-icon" href="mylogo.png" sizes="16px" />
<!-- Devicon -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/devicons/[email protected]/devicon.min.css">
<title>Sultan Rifqi</title>
</head>
<body>
<!-- Header -->
<header class="header" id="header">
<nav class="nav container">
<a href="#">
<img src="mylogo.png" width="45px" height="45px" alt="">
</a>
<div class="nav_menu" id="nav-menu">
<ul class="nav_list grid">
<li class="nav_item">
<a href="#about" class="nav_link">
<i class="uil uil-user-square nav_icon"></i> About
</a>
</li>
<li class="nav_item">
<a href="#qualification" class="nav_link">
<i class="uil uil-graduation-cap nav_icon"></i> Qualification
</a>
</li>
<li class="nav_item">
<a href="#projects" class="nav_link">
<i class="uil uil-lightbulb-alt nav_icon"></i> Projects
</a>
</li>
<li class="nav_item">
<a href="#contact" class="nav_link">
<i class="uil uil-message nav_icon"></i> Contact
</a>
</li>
</ul>
<i class="uil uil-times nav_close" id="nav-close"></i>
</div>
<div class="nav_toggle" id="nav-toggle">
<i class="uil uil-apps"></i>
</div>
</nav>
</header>
<!-- Main -->
<main class="main">
<!-- Home -->
<section class="home section" id="home">
<div class="home_container container grid">
<div class="home_content grid">
<div class="home_social">
<a href="https://www.linkedin.com/in/sultan-rifqi/" target="_blank" class="home_social-icon">
<i class="uil uil-linkedin"></i>
</a>
<a href="mailto:[email protected]" target="_blank" class="home_social-icon">
<i class="uil uil-envelope-alt"></i>
</a>
<a href="https://github.com/blue4sky" target="_blank" class="home_social-icon">
<i class="uil uil-github-alt"></i>
</a>
<a href="https://www.instagram.com/sultanrifqi4/" target="_blank" class="home_social-icon">
<i class="uil uil-instagram"></i>
</a>
</div>
<div class="home_img">
<figure><img src="assets/img/profilepic.png" alt="" class="home_pic"/></figure>
</div>
<div class="home_data">
<h3 class="home_subtitle">Hey, I'm</h3>
<h1 class="home_title">Sultan Rifqi</h1>
<h3 class="home_job">Software Engineer 👨🏻💻</h3>
<!-- <p class="home_description">Currently studying Computer Science as a final year student at <a class="ucl_link" href="https://www.ucl.ac.uk/" style="color: black; font-weight: 600;">University College London 🎓</a></p> -->
<br>
<a href="#contact" class="special_button">
Contact Me <i class="uil uil-comment button_icon"></i>
</a>
</div>
</div>
<!-- Not Used -->
<div class="home_scroll">
<a href="#about" class="home_scroll-button button--flex">
<!-- <i class="uil uil-mouse-alt home_scroll-mouse"></i>
<span class="home_scroll-name">Scroll down</span>
<i class="uil uil-arrow-down home_scroll-arrow"></i> -->
</a>
</div>
</div>
</section>
<!-- About -->
<section class="about section" id="about">
<h2 class="section_title">About Me</h2>
<div class="about_container container grid">
<div class="about_data">
<p class="about_description1">
A hard-working computer science student with years of hands-on experience creating and testing applications
for Android <i class="devicon-android-plain colored"></i> and iOS <i class="devicon-apple-original colored"></i>.
Since high school, I have made many apps starting from the simplest to the most complex one, such as integrating multiple APIs to build a functional end-to-end app that impacts users positively.
</p>
<p class="about_description2">
I have a track record of proven leadership, communication, and time management skills
when I led my high school's student council, a society and an event.
I have also participated in many olympiads in mathematics or informatics,
which strengthen my critical thinking and problem-solving skills.
</p>
<p class="about_subtitle">
Some technologies I'm working with
</p>
<div class="about_info">
<div id="flutter_logo" class="big_box">
<img class="programming_logo" src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/flutter/flutter-original.svg" height="40px" width="40px"/>
</div>
<div id="kotlin_logo" class="big_box">
<img class="programming_logo" src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/kotlin/kotlin-original.svg" height="40px" width="40px"/>
</div>
<div id="python_logo" class="big_box">
<img class="programming_logo" src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/python/python-original.svg" height="40px" width="40px"/>
</div>
</div>
<div class="about_info">
<div id="java_logo" class="big_box">
<img class="programming_logo" src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/java/java-original.svg" height="40px" width="40px"/>
</div>
<div id="firebase_logo" class="big_box">
<img class="programming_logo" src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/firebase/firebase-plain.svg" height="40px" width="40px"/>
</div>
<div id="studio_logo" class="big_box">
<img class="programming_logo" src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/androidstudio/androidstudio-original.svg" height="40px" width="40px"/>
</div>
</div>
<div class="about_info">
<div id="figma_logo" class="big_box">
<img class="programming_logo" src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/figma/figma-original.svg" height="40px" width="40px"/>
</div>
<div id="react_logo" class="big_box">
<img class="programming_logo" src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/react/react-original.svg" height="40px" width="40px"/>
</div>
<div id="javascript_logo" class="big_box">
<img class="programming_logo" src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/javascript/javascript-original.svg" height="40px" width="40px"/>
</div>
</div>
<!-- <div class="about_buttons">
<a download="" href="assets/sultan_rifqi_cv.pdf" class="special_button">
Download CV<i class="uil uil-file button_icon"></i>
</a>
</div> -->
</div>
</div>
</section>
<!-- Qualification -->
<section class="qualification section" id="qualification">
<h2 class="section_title">Qualification</h2>
<span class="section_subtitle"></span>
<div class="qualification_container container">
<div class="qualification_tabs">
<div class="qualification_button button--flex qualification_active" data-target='#education'>
<i class="uil uil-graduation-cap qualification_icon"></i>
Education
</div>
<div class="qualification_button button--flex" data-target='#work'>
<i class="uil uil-briefcase-alt qualification_icon"></i>
Experience
</div>
</div>
<div class="qualification_section">
<!-- Education -->
<div class="qualification_content qualification_active" data-content id="education">
<!-- education 1 -->
<div class="education_data">
<div>
<a href="https://www.ucl.ac.uk/computer-science/" target="_blank">
<h3 class="education_title">University College London</h3>
</a>
<span class="education_subtitle">MSc Software Systems Engineering</span>
<div class="education_calendar">
<i class="uil uil-calendar-alt"></i>
September 2024 - September 2025
</div>
</div>
<div>
<span class="education_rounder"></span>
<span class="education_line"></span>
</div>
</div>
<!-- education 2 -->
<div class="education_data">
<div></div>
<div>
<span class="education_rounder"></span>
<span class="education_line"></span>
</div>
<div>
<a href="https://www.ucl.ac.uk/computer-science/" target="_blank">
<h3 class="education_title">University College London</h3>
</a>
<span class="education_subtitle">BSc (Hons) Computer Science with Crime & Security Engineering as Minor</span>
<div class="education_calendar">
<i class="uil uil-calendar-alt"></i>
September 2021 - June 2024
</div>
</div>
</div>
<!-- education 3 -->
<div class="education_data">
<div>
<a href="https://warwick.ac.uk/study/ifp/" target="_blank">
<h3 class="education_title">University of Warwick</h3>
</a>
<span class="education_subtitle">International Foundation Programme <br> Computer Science</span>
<div class="education_calendar">
<i class="uil uil-calendar-alt"></i>
September 2020 - July 2021
</div>
</div>
<div>
<span class="education_rounder"></span>
<span class="education_line"></span>
</div>
</div>
<!-- education 4 -->
<div class="education_data">
<div></div>
<div>
<span class="education_rounder"></span>
</div>
<div>
<a href="http://sman61jkt.sch.id/" target="_blank">
<h3 class="education_title">SMAN 61 Jakarta</h3>
</a>
<span class="education_subtitle">High School Diploma <br> Natural Sciences</span>
<div class="education_calendar">
<i class="uil uil-calendar-alt"></i>
July 2017 - July 2020
</div>
</div>
</div>
</div>
<!-- Experirience -->
<div class="qualification_content" data-content id="work">
<!-- Experience 1 -->
<div class="education_data">
<div>
<a href="https://www.butterfly-air.com/" target="_blank">
<h3 class="education_title">Butterfly Air</h3>
</a>
<span class="education_subtitle">Mobile Application Developer</span>
<div class="education_calendar">
<i class="uil uil-calendar-alt"></i>
January 2024 - Present
</div>
</div>
<div>
<span class="education_rounder"></span>
<span class="education_line"></span>
</div>
</div>
<!-- Experience 2 -->
<div class="education_data">
<div></div>
<div>
<span class="education_rounder"></span>
<span class="education_line"></span>
</div>
<div>
<a href="https://www.butterfly-air.com/" target="_blank">
<h3 class="education_title">Butterfly Air</h3>
</a>
<span class="education_subtitle">Mobile Application Developer Intern</span>
<div class="education_calendar">
<i class="uil uil-calendar-alt"></i>
July 2023 - September 2023
</div>
</div>
</div>
<!-- Experience 3 -->
<div class="education_data">
<div>
<h3 class="education_title">Valley</h3>
<span class="education_subtitle">Mobile Application Developer</span>
<div class="education_calendar">
<i class="uil uil-calendar-alt"></i>
December 2022 - September 2023
</div>
</div>
<div>
<span class="education_rounder"></span>
<span class="education_line"></span>
</div>
</div>
<!-- Experience 4 -->
<div class="education_data">
<div></div>
<div>
<span class="education_rounder"></span>
<span class="education_line"></span>
</div>
<div>
<a href="https://careers.jpmorgan.com/in/en/students/programs/code-for-good" target="_blank">
<h3 class="education_title">Code for Good</h3>
</a>
<span class="education_subtitle">Hackathon by JPMorgan Chase & Co.</span>
<div class="education_calendar">
<i class="uil uil-calendar-alt"></i>
28 October 2022 - 29 October 2022
</div>
</div>
</div>
<!-- Experience 5 -->
<div class="education_data">
<div>
<a href="https://hack-at-ice-2022.devpost.com/" target="_blank">
<h3 class="education_title">Hack-at-ICE</h3>
</a>
<span class="education_subtitle">Hackathon by Young Indonesian Professionals' Association (YIPA) - UK</span>
<div class="education_calendar">
<i class="uil uil-calendar-alt"></i>
1 October 2022 - 2 October 2022
</div>
</div>
<div>
<span class="education_rounder"></span>
</div>
</div>
</div>
</div>
</section>
<!-- Projects -->
<section class="projects section" id="projects">
<h2 class="section_title">Projects</h2>
<span class="section_subtitle">(swipe or press left/right to see other projects)</span>
<div class="projects_container container swiper-container">
<div class="swiper-wrapper">
<!-- Projects 1 -->
<div class="projects_content grid swiper-slide">
<img src="assets/img/cfg.png" alt="" class="projects_img">
<div class="projects_data">
<h3 class="projects_title">Web Platform for DeafBlind UK
<a href="https://github.com/blue4sky/DeafblindUK-Web-Platform">
<i class="uil uil-github project_icon"></i>
</a>
<a href="https://docs.google.com/presentation/d/1xoibK9plW_rZfoevkvh34sIaN2hBtYd-RIH4YTo7RDw/edit?usp=sharing" target=”_blank”>
<i class="uil uil-presentation-edit project_icon"></i>
</a>
</h3>
<p class="projects_description">
Helped a non-profit organisation, Deafblind UK, by collaboratively
developing a full-stack web application which is a platform for
deaf and blind people to connect, collaborate, and learn.
Features include integrated Google SSO authentication, image magnification
on mouse hover, text-to-speech and high contrast mode for accessibility.
</p>
<div class="used_tools">
<a>HTML</a>
</div>
<div class="used_tools">
<a>CSS</a>
</div>
<div class="used_tools">
<a>JavaScript</a>
</div>
<div class="used_tools">
<a>Flask</a>
</div>
<div class="used_tools">
<a>Python</a>
</div>
<div class="used_tools">
<a>Amazon EC2</a>
</div>
<div class="used_tools">
<a>MySQL</a>
</div>
</div>
</div>
<!-- Projects 2 -->
<div class="projects_content grid swiper-slide">
<img src="assets/img/serv.png" alt="" class="projects_img">
<div class="projects_data">
<h3 class="projects_title">SERV
<a href="https://github.com/blue4sky/serv">
<i class="uil uil-github project_icon"></i>
</a>
<a href="https://www.canva.com/design/DAFNybGitvo/gTulfqs6UDq0odxusRl62w/view?utm_content=DAFNybGitvo&utm_campaign=designshare&utm_medium=link2&utm_source=sharebutton" target=”_blank”>
<i class="uil uil-presentation-edit project_icon"></i>
</a>
</h3>
<p class="projects_description">
Finalist in the Hackathon organised by the
Young Indonesian Professionals' Association in the UK
Collaboratively developed a full-stack website application called "Serv"
to bridge the connection between service providers and vendors to MSMEs in Indonesia
Designed a user-friendly website by creating the wireframe of the website with Figma
to make the development smoother.
</p>
<div class="used_tools">
<a>Next.js</a>
</div>
<div class="used_tools">
<a>Tailwind CSS</a>
</div>
<div class="used_tools">
<a>Figma</a>
</div>
</div>
</div>
<!-- Projects 3 -->
<div class="projects_content grid swiper-slide">
<img src="assets/img/quiz_app_preview.png" alt="" class="projects_img">
<div class="projects_data">
<h3 class="projects_title">Educational Quiz App
<a href="https://github.com/blue4sky/EducationApp">
<i class="uil uil-github project_icon"></i>
</a>
<a href="https://www.mediafire.com/file/783wia3y8a0lpf8/Quiz_App.apk/file" target=”_blank”>
<i class="uil uil-download-alt project_icon"></i>
</a>
</h3>
<p class="projects_description">
Independently built an education app using MVC Architecture to support Indonesian high school students preparing for univeristy entrance exams.
There are many features on this app that are a built-in forum with sending text and photo functionality using Cloud Firestore,
full-stack development with Flutter, push notifications for giving the latest information to students using
Firebase Cloud Messaging and integrated SSO Authentication.
</p>
<div class="used_tools">
<a>Flutter</a>
</div>
<div class="used_tools">
<a>Firebase</a>
</div>
<div class="used_tools">
<a>Postman API</a>
</div>
</div>
</div>
<!-- Projects 4 -->
<div class="projects_content grid swiper-slide">
<img src="assets/img/ig_clone_preview.png" alt="" class="projects_img">
<div class="projects_data">
<h3 class="projects_title">Instagram Clone
<a href="https://github.com/blue4sky/InstagramClone">
<i class="uil uil-github project_icon"></i>
</a>
<a href="https://www.mediafire.com/file/761rt5b373n936v/Instagram_Clone.apk/file" target=”_blank”>
<i class="uil uil-download-alt project_icon"></i>
</a>
</h3>
<p class="projects_description">
An Instagram-like app which implements some features of the original one.
This app allows users to post a photo with a caption, and it will appear on the Home Page.
Every user can see their posts on Profile Page and also other users' posts on the Home Page.
Each post will be stored in the Cloud Firestore.
</p>
<div class="used_tools">
<a>Kotlin</a>
</div>
<div class="used_tools">
<a>XML</a>
</div>
<div class="used_tools">
<a>Android Studio</a>
</div>
<div class="used_tools">
<a>Firebase</a>
</div>
</div>
</div>
<!-- Projects 5 -->
<div class="projects_content grid swiper-slide">
<img src="assets/img/snapchat_clone_preview.png" alt="" class="projects_img">
<div class="projects_data">
<h3 class="projects_title">Snapchat Clone
<a href="https://github.com/blue4sky/snapchatclone">
<i class="uil uil-github project_icon"></i>
</a>
<a href="https://www.mediafire.com/file/6hpr92zhiyg42b0/Snapchat_Clone.apk/file" target=”_blank”>
<i class="uil uil-download-alt project_icon"></i>
</a>
</h3>
<p class="projects_description">
A Snapchat-like app which implements the simple features of the original one.
This app allows users to send a text with a photo to another user.
The message will be stored in the Realtime Database.
Another feature is the message will be deleted after the user sees it.
Firebase Authentication is used to store the user's username and password.
</p>
<div class="used_tools">
<a>Kotlin</a>
</div>
<div class="used_tools">
<a>XML</a>
</div>
<div class="used_tools">
<a>Android Studio</a>
</div>
<div class="used_tools">
<a>Firebase</a>
</div>
</div>
</div>
<!-- Projects 6 -->
<div class="projects_content grid swiper-slide">
<img src="assets/img/simple_notes_app_preview.png" alt="" class="projects_img">
<div class="projects_data">
<h3 class="projects_title">Simple Notes App
<a href="https://github.com/blue4sky/SimpleNotesApp">
<i class="uil uil-github project_icon"></i>
</a>
<a href="https://www.mediafire.com/file/ztsa87xzpt99pco/Simple_Notes_App.apk/file" target=”_blank”>
<i class="uil uil-download-alt project_icon"></i>
</a>
</h3>
<p class="projects_description">
A simple notes app that implements CRUD Operations.
This app allows users to create a new note with only plain text in it.
The note will automatically be saved to local storage (using SharedPreferences) so that the user can edit it later.
The delete feature is also available if the user wants to delete their note.
</p>
<div class="used_tools">
<a>Java</a>
</div>
<div class="used_tools">
<a>XML</a>
</div>
<div class="used_tools">
<a>Android Studio</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Me -->
<section class="contact section" id="contact">
<h2 class="section_title">Get In Touch</h2>
<span class="contact_subtitle">Feel free to contact me by email!</span>
<div class="contact_container container grid">
<form action="https://formsubmit.co/f4eef5958d261124fb0626ecaf816cfa" method="POST" class="contact_form grid">
<div class="contact_inputs grid">
<div class="contact_content">
<label for="name" class="contact_label">Name</label>
<input type="text" name="Name" class="contact_input" required>
</div>
<div class="contact_content">
<label for="email" class="contact_label">Email</label>
<input type="email" name="Email" class="contact_input" required>
</div>
</div>
<div class="contact_content">
<label for="title" class="contact_label">Title</label>
<input type="text" name="Title" class="contact_input" required>
</div>
<div class="contact_content">
<label for="message" class="contact_label">Message</label>
<textarea name="Message" id="" cols="0" rows="7" class="contact_input" required></textarea>
</div>
<div>
<button type="submit" class="special_button">
Send Message
<i class="uil uil-message button_icon"></i>
</button>
</div>
</form>
</div>
</section>
</main>
<!-- Footer -->
<footer class="footer">
<div class="footer_bg">
<div class="footer_container container grid">
<div class="footer_socials">
<a href="https://www.linkedin.com/in/sultan-rifqi/" target="_blank" class="footer_social">
<i class="uil uil-linkedin footer_icon"></i>
</a>
<a href="mailto:[email protected]" target="_blank" class="footer_social">
<i class="uil uil-envelope-alt footer_icon"></i>
</a>
<a href="https://github.com/blue4sky" target="_blank" class="footer_social">
<i class="uil uil-github-alt footer_icon"></i>
</a>
<a href="https://www.instagram.com/sultanrifqi4/" target="_blank" class="footer_social">
<i class="uil uil-instagram footer_icon"></i>
</a>
</div>
</div>
<p class="footer_copyright">© 2021 Sultan Rifqi</p>
</div>
</footer>
<!-- Scroll Top -->
<a href="#" class="scrollup" id="scroll-up">
<i class="uil uil-arrow-up scrollup_icon"></i>
</a>
<!-- Swiper JS -->
<script src="js/swiper-bundle.min.js"></script>
<!-- Main JS -->
<script src="js/main.js"></script>
</body>
</html>