-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
76 lines (76 loc) · 2.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-85FBXC6MLF"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-85FBXC6MLF');
</script>
<!-- Hotjar -->
<script>
(function (h, o, t, j, a, r) {
h.hj =
h.hj ||
function () {
(h.hj.q = h.hj.q || []).push(arguments);
};
h._hjSettings = { hjid: 3401371, hjsv: 6 };
a = o.getElementsByTagName('head')[0];
r = o.createElement('script');
r.async = 1;
r.src = t + h._hjSettings.hjid + j + h._hjSettings.hjsv;
a.appendChild(r);
})(window, document, 'https://static.hotjar.com/c/hotjar-', '.js?sv=');
</script>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="My portfolio website / playground" />
<meta
name="keywords"
content="full-stack, full-stack web engineer, web developer, web designer, font-end, frontend, back-end, backend, web development, javascript, three.js, react, michael kolesidis, personal web page, 3d, rubber duck"
/>
<meta prefix="og: http://ogp.me/ns#" property="og:type" content="website" />
<meta
prefix="og: http://ogp.me/ns#"
property="og:title"
content="Michael Kolesidis"
/>
<meta
prefix="og: http://ogp.me/ns#"
property="og:description"
content=">Michael Kolesidis | Full-Stack Web Engineer | My Portfolio Website / Playground"
/>
<meta
prefix="og: http://ogp.me/ns#"
property="og:image"
content="./screenshots/desktop_1c.png"
/>
<meta
name="image"
property="og:image"
content="./screenshots/desktop_1c.png"
/>
<meta
prefix="og: http://ogp.me/ns#"
property="og:url"
content="https://michaelkolesidis.com"
/>
<meta name="author" content="Michael Kolesidis" />
<title>MICHAEL KOLESIDIS 🙂</title>
<link rel="icon" type="image/x-icon" href="./assets/icons/favicon.ico" />
</head>
<body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.8.0/p5.min.js"></script>
<script src="./scripts/duck.js"></script>
<script type="module" src="/src/main.ts"></script>
</body>
</html>