-
Notifications
You must be signed in to change notification settings - Fork 0
/
about-me.html
54 lines (45 loc) · 1.9 KB
/
about-me.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About me - Pawel Michalski</title>
<meta name="description" content="Pawel Michalski's resume website">
<link rel="stylesheet" href="css/style.css" type="text/css">
<link rel="stylesheet" href="css/about-me.css" type="text/css">
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon-16x16.png">
</head>
<body>
<div id="wrapper">
<header>
<h1><a href="index.html">About Me</a></h1>
</header>
<div id="content">
<div id="image">
<img src="images/face.png" alt="face">
</div>
<main>
<h1>Hey!</h1>
<p>I'm a second-year student at Langara College. I'm from Poland. In my free time, I spend my time
cycling, hiking, reading fantasy books and playing volleyball.</p>
<br><br>
<p>If you want to cantact me reach me on <a href="https://www.instagram.com/zanzigza/">Instagram</a></p>
<p>or take a look at my <a href="https://github.com/Zanzigzan">Github</a></p>
</main>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about-me.html">About Me</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="volunteering.html">Volunteering</a></li>
</ul>
</nav>
</div>
<footer>
<p>Made by Pawel Michalski * Student id: 100390068 * Email: <a
href="mailto:[email protected]">[email protected]</a></p>
</footer>
</div>
</body>
</html>