-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (49 loc) · 2.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Resume - 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/index.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">Welcome to My Resume Website!</a></h1>
</header>
<div id="content">
<div id="image">
<img src="images/laptop.png" alt="laptop">
</div>
<main>
<dl>
<dt>About Me</dt>
<dd>A brief description of me and my background</dd>
<dt>Projects</dt>
<dd>A list of all major projects I have done with descriptions.</dd>
<dt>Volunteering</dt>
<dd>My voluntary experience along with what I've learned.</dd>
</dl>
<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>