-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (65 loc) · 2.46 KB
/
Copy pathindex.html
File metadata and controls
65 lines (65 loc) · 2.46 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Markus Levonyak">
<meta name="copyright" content="Markus Levonyak">
<title>Markus Levonyak</title>
<link rel="icon" href="images/icon.png">
<link rel="stylesheet" href="styles/screen.css">
<link rel="stylesheet" href="styles/bootstrap-icons/bootstrap-icons.min.css">
<script>
// Email obfuscator script 2.1 by Tim Williams, University of Arizona
// Random encryption key feature by Andrew Moulden, Site Engineering Ltd
// This code is freeware provided these four comment lines remain intact
// A wizard to generate this code is at http://www.jottings.com/obfuscator/
function writeEmail(coded, key, text) {
shift = coded.length
link = ""
for (i = 0; i < coded.length; i++) {
if (key.indexOf(coded.charAt(i)) == -1) {
ltr = coded.charAt(i)
link += (ltr)
}
else {
ltr = (key.indexOf(coded.charAt(i)) - shift + key.length) % key.length
link += (key.charAt(ltr))
}
}
document.write("<a href='mailto:" + link + "'>" + ((text) ? text : link) + "</a>");
}
</script>
</head>
<body>
<div id="left" class="column">
<div class="wrapper">
<img src="images/markus-levonyak.png" alt="Markus Levonyak" width="400" height="400">
</div>
</div>
<div id="right" class="column">
<div class="wrapper">
<h1>Markus Levonyak</h1>
<h2>Software Engineer</h2>
<div class="info">
<i class="bi-building icon"></i>
<ul>
<li>Levonyak Consulting LLC</li>
<li>7901 4th St N #6439</li>
<li>St. Petersburg, FL 33702</li>
<li>United States</li>
</ul>
</div>
<div class="info">
<i class="bi-envelope icon"></i>
<script>writeEmail("zic3yJ@50aFAoi3.9Fz", "CL2G4W3zKycsYHi7O60PXnfQqh8Zo9JVlbDdpIvMAEgNt1wFxkm5urSBRaUjTe")</script>
</div>
<div class="social">
<a href="https://github.com/markuslevonyak"><i class="bi-github icon"></i></a>
<a href="https://x.com/markuslevonyak"><i class="bi-twitter-x icon"></i></a>
<a href="https://www.linkedin.com/in/markuslevonyak"><i class="bi-linkedin icon"></i></a>
</div>
</div>
</div>
</body>
</html>