-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
130 lines (125 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
119
120
121
122
123
124
125
126
127
128
129
130
<!--
Udemy course
Full Stack Web Developer
Learning and practicing space
Project: CV
Created by: Fink62
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fink62 - My personal site</title>
<link rel="stylesheet" href="css/styles.css">
<link rel="icon" href="favicon.ico">
</head>
<body>
<header>
</header>
<main>
<table>
<thead>
</thead>
<tbody>
<tr>
<td><img src="images/joerg.png" alt="Fink62 profile picture" height="150px"></td>
<td>
<h1>Fink62</h1>
<p><em>not a founder, but in a CTO team</em></p>
<p>I ❤️ good music, played loud, preferably from vinyl.</p>
</td>
<tr>
<td>
<table>
<tr>
<td>Name:</td>
<td>Jörg (Fink62)</td>
</tr>
<tr>
<td>Age:</td>
<td>60</td>
</tr>
<tr>
<td>From:</td>
<td>Berlin, Germany</td>
</tr>
</table>
</td>
</tr>
</tr>
</tbody>
</table>
<hr>
<h3>Work Experience</h3>
<table>
<thead>
<tr>
<th>Dates</th>
<th>Work</th>
</tr>
</thead>
<tbody>
<tr>
<td>1987-1990</td>
<td>Engineer at NILES</td>
</tr>
<tr>
<td>1990-1994</td>
<td>Self employed consultant and developer</td>
</tr>
<tr>
<td>1994-1998</td>
<td>IT engineer at a radio station</td>
</tr>
<tr>
<td>1998-presence</td>
<td>Consultant at a big IT company</td>
</tr>
</tbody>
</table>
<hr>
<h3>Skills</h3>
<table>
<thead>
</thead>
<tbody>
<tr>
<td>
<table>
<tr>
<td>Web Programming</td>
<td>👍</td>
</tr>
<tr>
<td>C, C#</td>
<td>👍</td>
</tr>
</table>
</td>
<td>
<table>
<tr>
<td>PowerShell</td>
<td>👍👍</td>
</tr>
<tr>
<td>Forth</td>
<td>👍👍👍</td>
</tr>
</table>
</td>
</tr>
</tbody>
</table>
<hr>
<table>
<tr>
<td><a href="./contact.html">Contact Me</a></td>
<td><a href="./hobbies.html">My Hobbies</a></td>
</tr>
</table>
</main>
</body>
</html>