forked from jdifebo/demonic-tutor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
59 lines (48 loc) · 1.99 KB
/
contact.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ"
crossorigin="anonymous">
<link href="styles.css" rel="stylesheet">
<link rel="shortcut icon" href="favicon.ico">
<title>About - Demonic Tutor</title>
</head>
<body>
<div>
<nav class="navbar navbar-inverse bg-inverse">
<div class="container">
<a class="navbar-brand" href="index.html">Demonic Tutor</a>
<a class="nav-item nav-link" href="index.html">Home</a>
<a class="nav-item nav-link" href="about.html">About</a>
<a class="nav-item nav-link active" href="contact.html">Contact <span class="sr-only">(current)</span></a>
</div>
</nav>
<br>
<div class="container narrow">
<h1>Contact</h1>
<p>
I would love to recieve feedback or any suggestions!
</p>
<ul>
<li id="email"></li>
<li>Create an issue or pull request on <a href="https://github.com/jdifebo/demonic-tutor">Github</a></li>
<li>Reddit: <a href="https://www.reddit.com/user/jdifebo/">/u/jdifebo</a></li>
</ul>
</div>
<script>
// Obfuscate my email ever so slightly to make it harder to scrape by bots.
document.getElementById("email").innerHTML = atob("PGEgaHJlZj0ibWFpbHRvOkRlbW9uaWNUdXRvclNlYXJjaEBnbWFpbC5jb20iIHRhcmdldD0iX3RvcCI+RGVtb25pY1R1dG9yU2VhcmNoQGdtYWlsLmNvbTwvYT4=");
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-102532777-2', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>