-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcon.html
More file actions
executable file
·112 lines (93 loc) · 3.26 KB
/
con.html
File metadata and controls
executable file
·112 lines (93 loc) · 3.26 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html>
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-JGW6MNEWGH"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-JGW6MNEWGH');
</script>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>AbEC | Con</title>
<script src="scramble.js"></script>
<link rel="icon" href="images/abec-logo-bg.png" />
<link rel="shortcut icon" href="images/abec-logo-bg.png" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/hack-font/3.3.0/web/hack.min.css"
integrity="sha512-XgCw4Srl8lC1ECwcaHwAU0WnxQwHkqmInzg9wJLtGB7DRuMaXPuK2k9WJ2AwRDGdrgK9eJpZl2hUlLi2WQssmw=="
crossorigin="anonymous"
/>
<style>
#myDIV {
width: 70%;
padding: 50px 0;
text-align: left;
margin-top: 20px;
}
</style>
<script>
function myFunction() {
var x = document.getElementById("myDIV");
if (x.style.display === "none") {
x.style.display = "block";
} else {
x.style.display = "none";
}
}
</script>
</head>
<body>
<section>
<pre>
<div class="myHead">
<span id="myName" >@AbEC</span>:<span id="dollar">~</span>$ con<blink></blink>
</div>
<div class="divName">
<span style="color: green"><</span> <a href="index.html">[ Home ]</a>
<span id="intro">If you wish to contact me, the email is the easiest way :)</span>
<br>
<button onclick="myFunction()">Show</button>
<div id="myDIV" style="display: none">
AbEC
abec.ec42@gmail.com
<a href = "mailto:abec.ec42@gmail.com?subject = I wish to contact you&body = Hi :)">Send AbEC an email</a>
<br>
Alexandre Mascarenhas
mascarenhasav@gmail.com
<a href = "mailto:mascarenhasav@gmail.com?subject = I wish to contact you&body = Hi :)">Send me an email</a>
</div>
</div>
<br><br><br><br><br><br><br>
<div class="myFoot">
<span>
<a href="https://mascarenhasav.github.io" target="_blank" id="footLine"><hr size="3" width="90%" style="margin-left:35px" color="#468"></a><!DOCTYPE html>
<!-- <a href="index.html" class="hLine" id="footLine"><hr size="3" width="98%" color="#468"></a><!DOCTYPE html> -->
</span>
<span class=nobr>
<a class="verticalLine" ></a>
<a href="install.html">Install</a>
<!--<a href="webpage.html">Man</a> -->
<a class="verticalLine" ></a>
<a href="use.html">Use</a>
<!--<a href="resume.html">Resume</a> -->
<a class="verticalLine" ></a>
<a href="examples.html">Examples</a>
<!--<a href="pub.html">Publications</a> -->
<a class="verticalLine" ></a>
<a href="doc.html">Documentation</a>
<!--<a href="pro.html">Projects</a> -->
<a class="verticalLine" ></a>
<a href="con.html">Contact</a>
<!-- <a href="con.html">Contact</a> -->
<a class="verticalLine" ></a>
</span>
</div>
</pre>
</section>
</body>
</html>