forked from LevytsRoman/levytsroman.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
36 lines (34 loc) · 2.02 KB
/
about.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
---
layout: not_homepage
quote: I don’t have time for hobbies. At the end of the day, I treat my job as a hobby. It’s something I love doing.
author: David Beckham
---
{% include quote.html quote=page.quote author=page.author %}
<div class="container about_section">
<div class="row">
<img src="/assets/images/profile_picture.jpg" class="col m2 s3 responsive circle about_img" alt="me">
<div class="about_paragraph">
<p>
Hi, my name is Fahim and I'm a consultant on computers and the internet. My first introduction to computers occurs at the age of seven. Since then I have been optimistic about computer programs and gadget like electronics. At first, I wanted to become a graphics designer but the vast world of computer gradually introduced me to the internet, pen testing, hardware hacking, and programming. Since then I've learned various languages and frameworks and built more to-do lists then I can count. I've also worked as a web developer and hosted e-sports tournament countless times. It's always satisfying to help people and learn from there lives.
</p>
<p>
I am now looking for my next adventure, so feel free to browse the <a class="about_me_links" href="/projects">projects</a> section to check out what I've built, <a class="about_me_links" href="/contact">shoot me an email</a> or connect on <a class="about_me_links" href="https://www.linkedin.com/in/fahim5001">linkedIn</a>.
</p>
</div>
</div>
<h3 class="heading skills_heading center-align">Skills:</h3>
<div class="skills_wrapper">
{% for tech_group in site.data.skills %}
<div class="skill_group">
<div class="col m4 s6">
<h4 class="heading">{{tech_group.name}}:</h4>
<div class="skills">
{% for tech in tech_group.skills %}
<i class="about_skill_icon devicon-{{tech.class}}"></i><span class="skill_names">{{tech.skill_name}}</span><br/>
{% endfor %}
</div>
</div>
</div>
{% endfor %}
</div>
</div>