-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
160 lines (153 loc) · 4.58 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<!DOCTYPE html>
<html lang="en">
<head>
<link
rel="apple-touch-icon"
sizes="180x180"
href="./assets/favicon/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./assets/favicon/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="./assets/favicon/favicon-16x16.png"
/>
<link rel="manifest" href="./assets/favicon/site.webmanifest" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-VKSNF8B0V8"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-VKSNF8B0V8');
</script>
<title>Radi's Personal Page</title>
<meta
name="description"
content="Radi's personal page, containing contact info and CV download link"
/>
<meta name="author" content="Radi Totev" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css"
integrity="sha512-NmLkDIU1C/C88wi324HBc+S2kLhi08PN5GDeUVVVC/BVt/9Izdsc9SVeVfA1UZbY3sHUlDSyRXhCzHfr6hmPPw=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<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=Corben&family=Roboto:wght@700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./styles.css" />
</head>
<body>
<div class="overlay">
<main>
<img
class="qr-contact-details"
src="./assets/qr-code.png"
alt="QR Code"
/>
<h1>Radi Totev</h1>
<h4>Software Developer</h4>
<a
id="download_button"
class="button"
href="https://drive.google.com/file/d/1BDRv9aPefrta9SYTe5nSZQEKkMUgXOfw/view?usp=sharing"
type="button"
target="_blank"
>Download CV</a
>
<section>
<a
id="email"
href="mailto:[email protected][email protected]"
target="_blank"
>
<img class="social" src="./assets/email.png" alt="Email icon" />
</a>
<a id="github" href="https://github.com/raditotev" target="_blank">
<img
class="social"
src="./assets/github-logo.png"
alt="Github logo"
/>
</a>
<a
id="linkedin"
href="https://www.linkedin.com/in/raditotev/"
target="_blank"
>
<img
class="social"
src="./assets/linkedin-logo.png"
alt="LinkedIn logo"
/>
</a>
<a id="blog" href="https://blog.radi.pro/" target="_blank">
<img class="social" src="./assets/blog-logo.png" alt="Blog logo" />
</a>
</section>
</main>
<footer>
<span
><a href="https://www.flaticon.com/free-icons/" title="icons"
>Icons by Freepik - Flaticon</a
></span
>
</footer>
</div>
<script>
const button = document.getElementById('download_button');
button.onclick = () => {
gtag('event', 'download_cv', {
event_category: 'click',
event_label: 'Download CV',
});
};
const githubLink = document.getElementById('github');
githubLink.onclick = () => {
gtag('event', 'visit_github', {
event_category: 'click',
event_label: 'Github Link Clicked',
});
};
const linkedInLink = document.getElementById('linkedin');
linkedInLink.onclick = () => {
gtag('event', 'visit_linkedin', {
event_category: 'click',
event_label: 'LinkedIn Link Clicked',
});
};
const blogLink = document.getElementById('blog');
blogLink.onclick = () => {
gtag('event', 'visit_blog', {
event_category: 'click',
event_label: 'Blog Link Clicked',
});
};
const emailLink = document.getElementById('email');
emailLink.onclick = () => {
gtag('event', 'send_email', {
event_category: 'click',
event_label: 'Send E-mail Clicked',
});
};
</script>
</body>
</html>