-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (33 loc) · 1.08 KB
/
index.html
File metadata and controls
33 lines (33 loc) · 1.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="./css/main.css" />
<title>Hello Website!</title>
</head>
<body>
<div class="bottom-corner">
<div class="bg">
<h1>Macky Clemen</h1>
<p>website WIP</p>
<button class="button" onclick="mailme()">email (disabled!)</button>
</div>
</div>
<script>
function mailme() {
/*
// stopping bots from using my email lmao
var user = "";
var domain = "";
if (window.document.documentMode) {
window.open("mailto:" + user + "@" + domain + "?body=You **really** should change out of Internet Explorer.");
} else {
window.open("mailto:" + user + "@" + domain);
}
*/
alert("Email has been disabled for now; I've been receiving a lot of spam at the moment unfortunately. Sorry!");
}
</script>
</body>
</html>