-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (72 loc) · 2.59 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
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;800&family=Sarala:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/public/css/main.css">
<title>Aljaz Kern (aljaz90)</title>
</head>
<body class="container">
<header class="nav">
<div onclick="handleLogoClick()" class="nav--section">
<div class="nav--item nav--item-header">
Aljaz Kern
</div>
<div class="nav--item nav--item-header nav--item-header-2">
aljaz90
</div>
</div>
<div class="nav--section">
<div class="nav--item">
<a href="/about.html" class="nav--item--link">
About
</a>
</div>
<div class="nav--item">
<a href="/projects.html" class="nav--item--link">
Projects
</a>
</div>
</div>
</header>
<section class="home--header">
<div class="home--header--introduction">
Hi, my name is Aljaz.
</div>
<div class="home--header--role">
I'm a software developer.
</div>
<div class="home--header--description">
Check out more about me
<a class="home--header--description--link" href="/about.html">
About
</a>
or take a look at my projects
<a class="home--header--description--link" href="/projects.html">
Projects
</a>.
</div>
</section>
<section class="home--links">
<a href="https://github.com/aljaz90" target="_blank" class="home--links--item">
<img class="home--links--item--icon" src="/public/img/GitHub-Mark-64px.png"/> Github
</a>
</section>
<footer class="footer">
<div class="footer--section">
<div class="footer--section--item">
Made in <span class="footer--section--item--detail">2022</span> by <span class="footer--section--item--detail">Aljaz Kern</span>
</div>
</div>
</footer>
<script>
function handleLogoClick() {
window.location.href = "/";
}
</script>
</body>
</html>