-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
74 lines (67 loc) · 2.27 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
<!DOCTYPE html>
<html>
<head>
<title>dayron.io | Home</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="assets/css/main.css" />
<noscript>
<link rel="stylesheet" href="assets/css/noscript.css" />
</noscript>
<link rel="apple-touch-icon" sizes="180x180" href="favicon/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="favicon/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="favicon/favicon-16x16.png" />
<link rel="manifest" href="favicon/site.webmanifest" />
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-62LL84JXFB"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-62LL84JXFB');
</script>
</head>
<body class="is-preload">
<div id="wrapper">
<div id="bg"></div>
<div id="overlay"></div>
<div id="main">
<!-- Header -->
<header id="header">
<h1>Dayron Acosta</h1>
<p>
Software Developer • Systems Administrator
</p>
<nav>
<ul>
<li>
<a href="https://github.com/dayroned" class="icon brands fa-github"><span class="label">Github</span></a>
</li>
<li>
<a href="https://keybase.io/dayron" class="icon brands fa-keybase"><span class="label">Keybase</span></a>
</li>
<li>
<a href="https://www.linkedin.com/in/dayroned/" class="icon brands fa-linkedin"><span class="label">Linkedln</span></a>
</li>
</ul>
</nav>
</header>
<!-- Footer -->
<footer id="footer">
<span class="copyright">© 2023 Dayron Acosta</span>
</footer>
</div>
</div>
<script>
window.onload = function () {
document.body.classList.remove("is-preload");
};
window.ontouchmove = function () {
return false;
};
window.onorientationchange = function () {
document.body.scrollTop = 0;
};
</script>
</body>
</html>