-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
96 lines (88 loc) · 2.53 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="en">
<title>Hayrettin Başaraner</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#0d1117">
<meta name="description" content="Hayrettin Başaraner - Personal Website">
<meta name="author" content="Hayrettin Başaraner">
<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=Source+Code+Pro:wght@200;400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/assets/icomoon/style.css">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-FPFFFBY5SR"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-FPFFFBY5SR');
</script>
<style>
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: Arial;
font-size: 17px;
background-color: #000;
}
.monospace {
font-family: "Source Code Pro", monospace;
}
.links {
display: grid;
grid-template-columns: 3em 3em 3em 3em;
justify-content: start;
column-gap: 0.5em;
}
.links > a {
font-size: 2em;
text-decoration: none;
text-align: center;
color: #fff;
}
.links > a:hover {
color: #aaa;
}
#background {
position: fixed;
right: 0;
bottom: 0;
min-width: 100%;
min-height: 100%;
}
.content {
position: fixed;
bottom: 0;
background: rgba(0, 0, 0, 0.25);
color: #f1f1f1;
width: 100%;
padding: 1.5em;
}
</style>
<body>
<video autoplay muted loop id="background">
<source src="https://assets.mixkit.co/videos/preview/mixkit-blinking-round-lights-with-bokeh-effect-38-large.mp4" type="video/mp4">
</video>
<div class="content">
<h1 class="monospace">Hayrettin Başaraner</h1>
<p class="monospace">Frontend Developer</p>
<div class="links">
<a href="https://github.com/hbasaraner" aria-label="Github" target="_blank">
<span class="icon-github"></span>
</a>
<a href="https://www.linkedin.com/in/hbasaraner/" aria-label="LinkedIn" target="_blank">
<span class="icon-linkedin"></span>
</a>
<a href="https://twitter.com/hbasaraner" aria-label="Twitter" target="_blank">
<span class="icon-twitter"></span>
</a>
<a href="mailto:[email protected]" aria-label="Mail" target="_blank">
<span class="icon-envelop"></span>
</a>
</div>
</div>
</body>
</html>