-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (23 loc) · 1014 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
<!DOCTYPE html>
<html lang="es">
<head>
<!-- Este es el título que se muestra en el navegador, cámbialo por el de tu historia -->
<title>Pulgas al rescate</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<!-- Este contenedor es usado por Ficdown.js para presentar la historia -->
<div class="container"><div id="gamecontent"></div></div>
<!-- Dependencias de Ficdown.js -->
<script src="js/jquery-2.1.1.min.js"></script>
<script src="js/Markdown.Converter.min.js"></script>
<script src="js/Markdown.Sanitizer.min.js"></script>
<!-- Ficdown.js -->
<script src="js/ficdown.js"></script>
<script>
// Escribe tu código aquí.
</script>
<!-- Se incluye ficdown-play.js, donde están los parámetros para iniciar la historia. Recuerda renombrar el archivo de tu historia como "story.md" y ponerlo en la misma carpeta donde está el archivo index.html -->
<script src="js/ficdown-play.js"></script>
</body>
</html>