-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblockheads.html
67 lines (51 loc) · 1.55 KB
/
blockheads.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
<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<link rel="stylesheet" href="css/blockheads.css"/>
</head>
<body>
<div class="container">
<center>
<div class='signs'>
<div class='sign'>
<span>
Welcome to <br/>
Blockheads CSS <br/>
By: Darkserver
</span>
</div>
<div class='sign'>
<span>
This is <br/>
a sign <br/>
</span>
</div>
<div class='sign'>
<span>
This is <br/>
another sign <br/>
</span>
</div>
<div class='sign'>
<span>
Yet another sign<br/>
You amazed yet?<br/>
</span>
</div>
</div>
<br/>
<a href='https://twitter.com/pierce_manasseh' class='button'>Twitter: @pierce_manasseh</a>
</center>
<div id="moreInfoBtn" class="buttonGreen" style="position:absolute;top:0;left:0;">More Info</div>
<div id="moreInfo" class="hidden popup" style="position:absolute;top:30px;left:1px;max-width:30%;">
I like <i>The Blockheads</i>, it's such a beautiful game. I wish other games can show the beauty this game does.
</div>
<center style="position:relative;top:60px;">
<a href="css/blockheads.css" class="buttonGreen">Download Blockheads CSS</a>
<a href="css/blockheads.min.css" class="buttonGreen">Download Minified CSS</a>
</center>
</div>
<script>$('#moreInfoBtn').click(function(){$('#moreInfo').toggleClass('hidden');});</script>
</body>
</html>