-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
94 lines (89 loc) · 3.6 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Arman Urazov</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link href="./styles.css" rel="stylesheet">
</head>
<body>
<header>
<div class="container">
<div class="row">
<div class="col">
<a href="/">Home</a>
</div>
<div class="col">
<a href="/education">Education</a>
</div>
<div class="col">
<a href="/work">Work experience</a>
</div>
<div class="col">
<a href="/projects">Projects</a>
</div>
<div class="col">
<a href="/contact">Contact</a>
</div>
</div>
</header>
<hr>
<div class="container">
<div class="row">
<div class="col">
<p>
Ciao, my name is <b>Arman</b> and I am pursuing my studies at Seneca College as a Computer
Programmer. I
previously obtained a Bachelor degree in Business Administration and worked in large corporations
like Novartis
and ExxonMobil. However I decided to accept a new challenge and become a professional Software
Developer.
</p>
<p>
My expertise lies primarily in Web development but also coding in C++ language. I am familiar with
the fundamental concepts of programming including <b>OOP</b> and software architecture such as MVC.
I feel
comfortable working on back end as well as front end development. I have strong knowledge of
<b>Node.js</b>
environment and <b>Express.js</b> framework, also <b>MongoDB</b> and <b>PostgreSQL</b> for database
administration.
</p>
<p>
I fluently speak English, Russian and Czech languages. I would confidently place among my strengths
solid ability to analytical thinking and creative approach to things. I have proven skills of
prioritizing and time management. Outside my professional profile, I am active in my spare time. I
am a BJJ practitioner, also enjoy
playing soccer, skiing, hiking and travelling. Too-da-loo!
</p>
</div>
</div>
<div class="row">
<div class="col">
</div>
</div>
<div class="row">
<div class="col">
</div>
</div>
<div class="row">
<div class="col about">
<img class="about-img" src="./images/1.jpg">
</div>
<div class="col about">
<img class="about-img" src="./images/2.jpg">
</div>
<div class="col about">
<img class="about-img" src="./images/3.jpg">
</div>
<div class="col about">
<img class="about-img" src="./images/4.jpg">
</div>
<div class="col about">
<img class="about-img" src="./images/5.jpg">
</div>
</div>
</div>
</body>
</html>