-
Notifications
You must be signed in to change notification settings - Fork 26
/
index.html
131 lines (116 loc) · 4.61 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Friday Night Funkin': DUSTTALE</title>
<meta id="viewport" name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="shortcut icon" type="image/png" href="./favicon.png">
<script type="text/javascript" src="./FNF DUSTTALE.js"></script>
<script>
window.addEventListener ("touchmove", function (event) { event.preventDefault (); }, { capture: false, passive: false });
if (typeof window.devicePixelRatio != 'undefined' && window.devicePixelRatio > 2) {
var meta = document.getElementById ("viewport");
meta.setAttribute ('content', 'width=device-width, initial-scale=' + (2 / window.devicePixelRatio) + ', user-scalable=no');
}
</script>
<style>
html,body { margin: 0; padding: 0; height: 100%; overflow: hidden; }
#openfl-content { background: #000000; width: 100%; height: 100%; }
@font-face {
font-family: 'Comic Sans MS';
src: url('assets/fonts/comic.eot?#iefix') format('embedded-opentype'),
url('assets/fonts/comic.woff') format('woff'),
url('assets/fonts/comic.ttf') format('truetype'),
url('assets/fonts/comic.svg#Comic%20Sans%20MS') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Comic Sans MS Bold';
src: url('assets/fonts/comicbd.eot?#iefix') format('embedded-opentype'),
url('assets/fonts/comicbd.woff') format('woff'),
url('assets/fonts/comicbd.ttf') format('truetype'),
url('assets/fonts/comicbd.svg#Comic%20Sans%20MS%20Bold') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Comic Sans MS Italic';
src: url('assets/fonts/comici.eot?#iefix') format('embedded-opentype'),
url('assets/fonts/comici.woff') format('woff'),
url('assets/fonts/comici.ttf') format('truetype'),
url('assets/fonts/comici.svg#Comic%20Sans%20MS%20Italic') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Comic Sans MS Bold Italic';
src: url('assets/fonts/comicz.eot?#iefix') format('embedded-opentype'),
url('assets/fonts/comicz.woff') format('woff'),
url('assets/fonts/comicz.ttf') format('truetype'),
url('assets/fonts/comicz.svg#Comic%20Sans%20MS%20Bold%20Italic') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Determination Mono';
src: url('assets/fonts/DTM-Mono.eot?#iefix') format('embedded-opentype'),
url('assets/fonts/DTM-Mono.woff') format('woff'),
url('assets/fonts/DTM-Mono.otf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Determination Sans';
src: url('assets/fonts/DTM-Sans.eot?#iefix') format('embedded-opentype'),
url('assets/fonts/DTM-Sans.woff') format('woff'),
url('assets/fonts/DTM-Sans.otf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Pixel Arial 11 Bold';
src: url('assets/fonts/pixel.eot?#iefix') format('embedded-opentype'),
url('assets/fonts/pixel.woff') format('woff'),
url('assets/fonts/pixel.otf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'VCR OSD Mono';
src: url('assets/fonts/vcr.eot?#iefix') format('embedded-opentype'),
url('assets/fonts/vcr.woff') format('woff'),
url('assets/fonts/vcr.ttf') format('truetype'),
url('assets/fonts/vcr.svg#VCR%20OSD%20Mono') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Nokia Cellphone FC Small';
src: url('flixel/fonts/nokiafc22.eot?#iefix') format('embedded-opentype'),
url('flixel/fonts/nokiafc22.woff') format('woff'),
url('flixel/fonts/nokiafc22.ttf') format('truetype'),
url('flixel/fonts/nokiafc22.svg#Nokia%20Cellphone%20FC%20Small') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Monsterrat';
src: url('flixel/fonts/monsterrat.eot?#iefix') format('embedded-opentype'),
url('flixel/fonts/monsterrat.woff') format('woff'),
url('flixel/fonts/monsterrat.ttf') format('truetype'),
url('flixel/fonts/monsterrat.svg#Monsterrat') format('svg');
font-weight: normal;
font-style: normal;
}
</style>
</head>
<body>
<noscript>This webpage makes extensive use of JavaScript. Please enable JavaScript in your web browser to view this page.</noscript>
<div id="openfl-content"></div>
<script type="text/javascript">
lime.embed ("FNF DUSTTALE", "openfl-content", 1280, 720, { parameters: {} });
</script>
</body>
</html>