-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
86 lines (81 loc) · 2.13 KB
/
index.html
File metadata and controls
86 lines (81 loc) · 2.13 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
<!DOCTYPE html>
<html>
<header>
<meta property="og:site_name" content="Skin directory" />
<meta property="og:url" content="https://mlgesus5183.github.io" />
<meta property="og:title" content="Quentin's Skins" />
<meta property="og:type" content="website" />
<meta property="og:image" content="https://mlgesus5183.GitHub.io/img/stick8.png" />
<meta property="og:image:alt" content="Fightstick skins"/>
<meta name="twitter:card" content="summary_large_image">
</header>
<script src="https://code.jquery.com/jquery-1.7.1.min.js"></script>
<style>
* {
box-sizing: border-box;
}
.preload { visibility: hidden; }
.column {
float: left;
width: 33.33%;
padding: 5px;
}
/* Clearfix (clear floats) */
.row::after {
content: "";
clear: both;
display: table;
}
</style>
<script>
$(window).load(function() {
$('.preload').attr('src', function(i,a){
$(this).attr('src','')
.removeClass('preload')
.attr('src',a);
});
});
</script>
<head></head>
<body style="background-color:black; color:white;">
<div class="row preload">
<div class="column">
<a href="stick8">
<img src ="img/stick8.gif" style="width:100%">
<p><center>Fightstick (8 button)</center></p>
</a>
<a href="stick8/source">
<p><center>source code</center></p>
</a>
</div>
<div class="column">
<a href="stick6">
<img src ="img/stick6.gif" style="width:100%">
<p><center>Fightstick (6 button)</center></p>
</a>
<a href="stick6/source">
<p><center>source code</center></p>
</a>
</div>
<div class="column">
<a href="stick4">
<img src ="img/stick4.gif" style="width:100%">
<p><center>Fightstick (4 button)</center></p>
</a>
<a href="stick4/source">
<p><center>source code</center></p>
</a>
</div>
</div>
<p><center>Right click image -> copy link address</center></p>
<a href="guilt">
<p><center>Ah, Guilty Gear!</center></p>
</a>
<a href="guilt/standard">
<p><center>^standard layout^</center></p>
</a>
<a href="guilt/test">
<p><center>^^testinggggg^^</center></p>
</a>
</body>
</html>