-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (51 loc) · 1.76 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
<!--
My homepage on Github
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 - Home</title>
<link rel="stylesheet" href="css/styles.css">
<link rel="icon" href="favicon.ico">
</head>
<body>
<header>
<h1>Fink62 Home</h1>
</header>
<main>
<img src="fink62.png" height="250px" alt="a sculpture of an old man looking at the sea">
<p>Name: Jörg (Fink62)</p>
<p>Age: 61</p>
<p>From: Berlin, Germany</p>
<hr>
<h3>Interests</h3>
<ul>
<li>Sailing</li>
<li>Music from vinyl</li>
<li>Making my own bread</li>
<li>Coding for fun and education</li>
</ul>
<hr>
<h3>Working on</h3>
<ul>
<li>CS50 Web Development</li>
<ul>
<li><a href="search/index.html">Project0 - Search</a></li>
</ul>
<li>The Code Brewery - Full Stack Web Developer (on Udemy)</li>
<ul>
<li><a href="cv/index.html">CV page</a></li>
<li><a href="mysite/index.html">My site</a></li>
<li><a href="tindog/index.html">Tindog</a></li>
<li><a href="dicee/index.html">Dicee Game</a></li>
<li><a href="drumkit/index.html">Drumkit</a></li>
<li><a href="simon/index.html">The Simon Game</a></li>
</ul>
</ul>
</main>
</body>
</html>