-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (35 loc) · 956 Bytes
/
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
<!-- index.html -->
<!DOCTYPE html>
<html>
<head>
<style>
html {
background: url(assets/fondos/trasera.jpg);
background-size: cover;
}
</style>
<title>Rogue Castle</title>
<link rel="shortcut icon" href="assets/fondos/logo.png">
<script>
window.requireNode = window.require;
window.require = undefined;
</script>
<script type="text/javascript" src="lib/require.js" data-main="main">
</script>
<style type="text/css">
@font-face{
font-family:MedievalSharp;
src: url(assets/fonts/MedievalSharp.ttf);
}
.hiddenText {
font-family: 'MedievalSharp', cursive;
visibility: hidden;
display: inline;
}
</style>
<p class="hiddenText"> . </p>
</head>
<body>
<div id="gameContainer"></div>
</body>
</html>