Add index.html for HTML rendering

This commit is contained in:
3wc 2024-02-13 03:27:22 -03:00
parent da1f1f1e2a
commit 4b6cd309ac
1 changed files with 32 additions and 0 deletions

32
index.html Normal file
View File

@ -0,0 +1,32 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Stone In a Glasshouse</title>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui"
/>
<meta name="format-detection" content="telephone=no" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="mobile-web-app-capable" content="yes" />
<style>
body {
margin: 0;
padding: 0;
background-color: black;
width: 100%;
height: 100%;
text-align: center;
}
canvas#webgl {
width: 900px;
margin: 0 auto;
}
</style>
</head>
<body>
<canvas id="webgl"></canvas>
<script type="text/javascript" src="bin/rewild.js"></script>
</body>
</html>