-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWork&School.html
102 lines (98 loc) · 4.6 KB
/
Work&School.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
<!DOCTYPE html>
<html>
<head>
<title>My Resume</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="header">
<div class="navbar">
<div class="logo">
<a href="index.html">Home</a>
</div>
<div class="menu">
<ul>
<li><a href="about.html">About</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a href="Work&School.html">Work&School</a></li>
<li><a href="#">Portfolio</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
<div class="contact-info">
<ul>
<li><a href="#" class="phone-no">+372 56920636</a></li>
<li><a href="#" class="sep">/</a></li>
<li><a href="#" class="email">[email protected]</a></li>
</ul>
</div>
</div>
<div class="resume">
<div class="container">
<div class="row">
<div class="col-md-6">
<h3>Work experience</h3>
<ul class="timeline">
<li>
<h4>
<span>2019 - </span>Network systems management specialist
</h4>
<p>
Day to day I work with Oracle SQL, NIS which is made for managing the electrical grid. <br>
<b>Company</b> - Enefit Connect <br>
<b>Duration</b> - 10 months [2019 apr - praeguseni] <br>
<b>Location</b> - Tallinn
</p>
</li>
<li>
<h4>
<span>2018 - </span>Junior systems administrator
</h4>
<p>
Managed our whole GCP environment and was the main IT support for the office and the lawyers.<br>
<b>Company</b> - Hugo.legal <br>
<b>Duration</b> - 7 months [2018 sep - 2019 veb] <br>
<b>Location</b> - Tallinn
</p>
</li>
</ul>
</div>
<div class="col-md-6">
<h3>Education</h3>
<ul class="timeline">
<li>
<h4>
<span>2019 - </span>University
</h4>
<p>
Studied IT systems administration and my bachelor thesis focused on AWS Control Tower management with the focus being on security, monitoring and automation.<br>
<b>School</b> - TalTech <br>
<b>Duration</b> - 2018 sept - 2021 may<br>
<b>Location</b> - Tallinn
</p>
</li>
<li>
<h4>
<span>2018 - </span>Highschool
</h4>
<p>
Attended the Nyo Science school majoring in mathematics.<br>
<b>School</b> - Nyo Science School <br>
<b>Duration</b> - 2014 sept - 2017 may<br>
<b>Location</b> - Nõo
</p>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</body>
</html>