-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
78 lines (70 loc) · 2.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Me</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/normalize.css" rel="stylesheet">
<link href="css/laakkonen_timo.css" rel="stylesheet">
<meta name="author" content="Timo Laakkonen">
</head>
<body>
<main>
<header>
<h1>Studying front-end developing</h1>
<nav>
<ul>
<li><a href='index.html'>Me</a></li>
<li><a href='highway-to-code-TL.html'>Studies</a></li>
<li><a href='off-studies-TL.html'>Leisure</a></li>
<li><a href='images-TL.html'>Images</a></li>
<li><a href='form-TL.html'>Contact</a></li>
</ul>
</nav>
</header>
<article class='index'>
<h2>Timo Laakkonen</h2>
<figure class='image'>
<img src="img/timo.jpg" alt="Timo Laakkonen">
<figcaption>Hello ;-)</figcaption>
</figure>
<section class='data'>
<b>Timo Laakkonen</b>
<p>
<b>Studies:</b><span>
OAMK H2C (Highway to Code)</span>
<span>My favorite topic:</span>
<span><a href='highway-to-code-TL.html#favorite' target='_blank'>React and Async
programming</a></span>
</p>
<p>
<b>Contact:</b>
<span>[email protected]</span>
<span>+358407155101</span>
</p>
<b>Hobbies:</b>
<ul style='margin: 0px'>
<li>Music (listening)</li>
<li>MTB-biking</li>
<li>Cats</li>
<li>Nature & country life at summer cottage</li>
<li>Travelling</li>
<li>Programming</li>
</ul>
</section>
</article>
<footer>
<section>
Timo Heikki Laakkonen
<span>2021</span>
</section>
<section>
Course work
<span>Highway to code</span>
<span> html and css course</span>
</section>
<div style="clear: both"></div>
</footer>
</main>
</body>
</html>