client/src/index.html

23 lines
598 B
HTML
Raw Normal View History

<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Pokemon Neige</title>
<script src="js/main.js"></script>
<script src="js/session.js"></script>
<script src="js/async.js"></script>
<script src="js/dom.js"></script>
2018-12-29 14:15:23 +01:00
<script src="js/cache.js"></script>
<script src="js/screen.js"></script>
<script src="js/buttons.js"></script>
<script src="js/messaging.js"></script>
<script src="js/ui.js"></script>
<script src="js/automaton.js"></script>
2018-11-17 19:07:58 +01:00
<link rel="stylesheet" href="screen.css" type="text/css"/>
</head>
<body>
2018-11-17 19:07:58 +01:00
<div id="screen">
</div>
</body>
</html>