-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.html
62 lines (47 loc) · 1.28 KB
/
footer.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
<body>
<div class="footer">
<style scoped>
@import url(http://fonts.googleapis.com/css?family=Raleway:400,200);
.footer-container {
position: relative;
margin: auto;
bottom: 0;
}
.footer {
display: block;
margin: auto;
background: #222;
text-align: center;
padding: 16px 0px;
position: absolute;
left: 0;
right: 0;
bottom: 0;
height: 80px;
}
.footer > div > a {
font-family: Raleway, sans-serif;
font-size: 28px;
font-weight: normal;
color: #888;
text-decoration: none;
transition: 0.5s;
}
.footer > div {
padding: 4px 0px;
}
.footer a:hover, .offcanvas a:focus{
color: #f0f0f0;
}
</style>
<div>
<a href="http://twitter.com/EnDimensions">Tweet Me: @EnDimensions</a>
</div>
<div id="emailContainerROT13"></div>
<script type=”text/javascript”>
let ciphertext = "<n uers=\"[email protected]\" ery=\"absbyybj\">Rznvy Zr: [email protected]</n>";
let plaintext = ciphertext.replace(/[a-zA-Z]/g, function(c){return String.fromCharCode((c<="Z"?90:122)>=(c=c.charCodeAt(0)+13)?c:c-26);});
document.getElementById("emailContainerROT13").innerHTML = plaintext;
</script>
</div>
</body>