-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
89 lines (83 loc) · 1.75 KB
/
index.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
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
<html>
<head>
<title>Bah! Hackers Security Group</title>
<style>
body {
color: #0f0;
background-color: #000;
font-family: "Courier New", Courier, monospace;
}
#wrap {
float: left;
position: relative;
left: 50%;
}
#content {
float: left;
position: relative;
left: -50%;
}
a:link, a:visited {
color: #0f0;
font-weight: bold;
}
a:hover{
color: #fff;
font-weight: bold;
}
blink, .blink {
-webkit-animation: blink 1.25s step-end infinite;
-moz-animation: blink 1.25s step-end infinite;
-o-animation: blink 1.25s step-end infinite;
animation: blink 1.25s step-end infinite;
}
@-webkit-keyframes blink {
67% { opacity: 0 }
}
@-moz-keyframes blink {
67% { opacity: 0 }
}
@-o-keyframes blink {
67% { opacity: 0 }
}
@keyframes blink {
67% { opacity: 0 }
}
</style>
<head>
<body>
<div id="wrap">
<div id="content">
<h1>Bah! Hackers Security Group</h1>
</div>
</div>
<br style="clear: both">
<div id="wrap">
<div id="content">
<pre>
__,--'\
__,--' :. \.
_,--' \`.
/|\ ` \ `.
/ | \ `: \ `/
/ '| \ `:. \
/ , | \ \
/ |: \ `:. \
/| ' | \ :. _,-'`.
\' |, / \ ` \ `:. _,-'_| `/
'._; \ . \ `_,-'_,-'
\' `- .\_ |\,-'_,-'
`--|_,`'
`/
</pre>
</div>
</div>
<br style="clear: both">
<div id="wrap" style="padding-top: 30px;">
<div id="content" style="text-align: center">
You can find us in <a href="http://webchat.freenode.net/?channels=bahackers">#bahackers</a> on <a href="http://freenode.org">irc.freenode.org</a>.<br><br><br>
Porto Alegre - RS <span class="blink">∎</span>
</div>
</div>
</body>
</html>