-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (61 loc) · 2.39 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
<!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 class="active"><a href="index.html">Home</a></li>
<li><a href="experience.html">Experience</a></li>
<li><a href="interests.html">Hobby</a></li>
</ul>
</nav>
<header id="header">
<img src="images/profilePicture.jpg" alt="Maciej Glowacki profile picture" class="profile-image">
<h1 class="tag name">Hello, I’m Maciej.</h1>
<h2 class="tag location">Frontend Developer</h2>
</header>
<main class="flex">
<article class="card">
<h2>Background</h2>
<p>My carrer was always around being a chef so I've been always a busy person, but still can find a time to learn
and create projects. Frontend became my
new hobby so I decided to change from a hobby to a serious thing.</p>
<p>I've noticed how much fun I find in coding and I decided to launch my carrer as a Frontend Developer.</p>
<p>Since, that moment I've learned about HTML CSS JavaScript and basics in React.js</p>
</article>
<article class="card">
<h2>Goals</h2>
<p>I want to use all of my time to stay focused on creating websites and app and increase my knowledge, skills and
abilities in:
</p>
<ul class="skills">
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
<li>React.js</li>
<li>Node.js</li>
<li>MongoDB</li>
</ul>
<p>I'd like to work for a company where I can be useful and develop not only websites but also myself.</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>