-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (48 loc) · 1.4 KB
/
index.html
File metadata and controls
52 lines (48 loc) · 1.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Henk Klijn Hesselink</title>
<style>
body {
font-family: 'Courier New', Courier, monospace;
background-color: #0d1117;
color: #c9d1d9;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.container {
text-align: center;
}
h1 {
font-size: 2.5em;
color: #00ff00;
text-shadow: 0 0 2px #00ff00, 0 0 20px #00ff00, 0 0 30px #00ff00, 0 0 40px #00ff00;
}
p {
font-size: 1.2em;
}
</style>
<script>
function obfuscateEmail() {
var user = "knilessehnjilk.kneh".split('').reverse().join('');
var domain = "outlook.com";
var email = user + "@" + domain;
document.getElementById("email").innerText = "E: " + email;
document.getElementById("mobile").innerText = "T: +3163840" + (9651 +1);
}
</script>
</head>
<body onload="obfuscateEmail()">
<div class="container">
<h1>Henk Klijn Hesselink</h1>
<p>IT Consultant / Software ontwikkelaar</p>
<p id="email"></p>
<p id="mobile"></p>
</div>
</body>
</html>