24 lines
485 B
HTML
24 lines
485 B
HTML
<html lang="en">
|
|
<head>
|
|
<title>Minecraft</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
|
|
<link rel="stylesheet" href="style.css"/>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="background" class="fullscreen"></div>
|
|
|
|
<div id="content">
|
|
<div id="canvas-container" class="fullscreen"></div>
|
|
<span id="pre-status">Loading scripts...</span>
|
|
</div>
|
|
|
|
</body>
|
|
|
|
<script type="module" src="src/js/Start.js"></script>
|
|
|
|
</html>
|
|
|
|
|