-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
77 lines (72 loc) · 2.54 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Filip's Portfolio | About</title>
<link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" type="text/css" href="css/normalize.css" />
<link
href="https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,400;0,700;1,100;1,400;1,700&display=swap"
rel="stylesheet" />
<link
href="https://fonts.googleapis.com/css2?family=Carrois+Gothic+SC&display=swap"
rel="stylesheet">
<link
href="https://fonts.googleapis.com/css2?family=Encode+Sans+Semi+Expanded:wght@100;300;400;500&display=swap"
rel="stylesheet">
<link
href="https://fonts.googleapis.com/css2?family=Metrophobic&display=swap"
rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/style.css" />
</head>
<body>
<header class="page-header">
<nav class="page-header__item navigation">
<div class="navigation__item">
<a href="index.html" class="navigation__item--transition">filip
sazdov</a>
</div>
<div class="navigation__item">
<a href="about.html" class="navigation__item--transition
navigation__item--active">about</a>
</div>
<div class="navigation__item">
<a href="work.html" class="navigation__item--transition">work</a>
</div>
<div class="navigation__item">
<a href="contact.html" class="navigation__item--transition">contact</a>
</div>
</nav>
</header>
<main>
<section class="description">
<div id="wrapper-about-page">
<div id="image-grid-item">
<img
src="img/portrait_square.jpg"
class="profile__portrait"
alt="A photograph of me"
/>
</div>
<div id="description-paragraph">
<p>
Hi. I'm Filip, an aspiring web developer looking to expand my
programming skills and knowledge, build projects, make some money
and
have fun while doing it :)
</p>
<p>
This is my portfolio webpage. Please feel free to
navigate the links and check out my work or contact me.
</p>
</div>
</div>
</section>
</main>
<footer class="page-footer">
</footer>
<!-- <script
src="js/tota11y.min.js"></script> -->
</body>
</html>