-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
118 lines (116 loc) · 4.38 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
<!DOCTYPE html>
<html lang="fi">
<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">
<link rel="stylesheet" href="styles.css">
<title>Resume</title>
</head>
<body>
<div class="card">
<div class="header">
<img class="profiilikuva" src="profiili.jpeg" alt="profiilikuva">
<h1>Johanna Vuorinen</h1>
<p>Student (software development), special social worker</p>
</div>
<div class="about">
<h2>About me</h2>
<p>I am currently studying software development
in Business College Helsinki. I'm
looking for an internship/trainee position since
I'm planning to finish the education in the spring
2020. <br /> <br />
My plan is to specialize in Fullstack development.
I have also learned the basics of Java, Frontend development,
(HTML, CSS, JavaScript, Wordpress) and MySQL.
In addition to the courses in Business College, I have also
finished some courses organized by Udemy and
the University of Helsinki (the faculty of science).
<br /> <br />
I have Master's degree in Social Science and experience
as a (special) social worker in the field of gerontology
for about 7 years. Therefore I have excellent understanding
about ageing and social aspects of people. I have also experience
in development and projects and interest in service design.
</p>
</div>
<hr />
<div class="info">
<h3>personal information</h3>
<table id="infobasic">
<tr>
<td><strong>Name</strong> </td>
<td>Johanna Vuorinen</td>
</tr>
<tr>
<td><strong>Location</strong></td>
<td>Helsinki, Finland</td>
</tr>
<tr>
<td><strong>E-mail</strong></td>
<td>[email protected]</td>
</tr>
</table>
</div>
<div class="lang">
<ul id="lang">
<h3>languages</h3>
<li><strong>Finnish:</strong><br />
⚫ ⚫ ⚫ ⚫ ⚫ native</li>
<li><strong>English:</strong><br />
⚫ ⚫ ⚫ ⚫ ⚪ fluent</li>
<li><strong>Swedish:</strong><br />
⚫ ⚫ ⚫ ⚪ ⚪ intermediate</li>
<li><strong>German:</strong><br />
⚫ ⚫ ⚫ ⚪ ⚪ intermediate</li>
</ul>
</div>
<hr />
<div class="work">
<h3>work experience</h3>
<table id="work">
<tr>
<th>Organisation</th> <th>Title</th>
<th>Period</th>
</tr>
<tr>
<td>City of Helsinki</td>
<td>Special social worker</td>
<td>Nov 2013 - present</td>
</tr>
<tr>
<td>City of Helsinki</td>
<td>Social worker</td>
<td>Dec 2011 - Oct 2013</td>
</tr>
</table>
</div>
<hr />
<div class="edu">
<h3>education</h3>
<table id="edu">
<tr>
<th>Unit</th>
<th>Degree</th>
<th>Graduation</th>
</tr>
<tr>
<td>Business College Helsinki</td>
<td>Information and communications
technology, software development</td>
<td>spring 2020</td>
</tr>
<tr>
<td>University of Helsinki</td>
<td>Master of Social Science,
social work</td>
<td>spring 2012</td>
</tr>
</table>
</div>
<hr />
<p class="date">Updated 9.10.2019</p>
</div>
</body>
</html>