-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinterests.html
71 lines (62 loc) · 2.53 KB
/
interests.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Maciej Glowacki - Frontend Dev</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css?family=Muli%7CRoboto:400,300,500,700,900" rel="stylesheet">
</head>
<body>
<nav class="main-nav">
<ul class="nav">
<li class="name">Maciej Glowacki</li>
<li><a href="index.html">Home</a></li>
<li><a href="experience.html">Experience</a></li>
<li class="active"><a href="interests.html">Hobby</a></li>
</ul>
</nav>
<header id="header" class="interests">
<h1 class="tag exp">Hobby</h1>
</header>
<div class="groupTitle card">
<h1>What I like to do...</h1>
</div>
<main class="flex">
<article class="card">
<h2>Workout</h2>
<img src="images/gym.jpg" alt="Gym">
<p>In my free time I love to spent time at a gym. In life we should have a balance in all type of
activitis.
Not only brain has to be train but also body has to be pushed.
</p>
</article>
<article class="card">
<h2>Healthy food and nutrition</h2>
<img src="images/healthy.jpg" alt="Healthy food">
<p>As I spent a lot of time taking care of my body I cannot forget about proper nutrition. I believe
that
everyone should know more about what to eat.
</p>
</article>
<article class="card">
<h2>Sushi chef</h2>
<img src="images/sushi.jpg" alt="Sushi chef">
<p>My very first job was a Sushi Chef. For last 10 years I was learning how to become a skillful. I have
learned and passed exams approved by japanese government. I have worked for the best japanese
restaurants in Oslo.
</p>
</article>
</main>
<footer>
<ul>
<li><a href="https://www.facebook.com/profile.php?id=100001079132075" target="_blank" class="social twitter">facebook</a>
</li>
<li><a href="https://github.com/MaciejGL" target="_blank" class="social github">Github</a></li>
<li><a href="https://www.linkedin.com/in/maciej-glowacki1" target="_blank" class="social linkedin">LinkedIn</a>
</li>
</ul>
<p class="copyright">Copyright 2020, Maciej Glowacki</p>
</footer>
</body>
</html>