This repository has been archived on 2025-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
rpgedit/dist/index.html
Matthias Schiffer a5e69edc5a
Code structuring
Also, use a fixed-size canvas for now.
2017-09-11 23:24:13 +02:00

27 lines
409 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>RPGedit</title>
<style type="text/css">
html, body {
width: 100%;
height: 100%;
}
body {
text-align: center;
}
* {
margin: 0px;
padding: 0px;
border: 0px;
}
</style>
</head>
<body>
<canvas id="rpgedit" width="1024" height="768"></canvas>
<script src="bundle.js"></script>
</body>
</html>