24 lines
517 B
HTML
24 lines
517 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="shortcut icon" href="src/resources/favicon.ico" type="image/x-icon">
|
|
<link rel="stylesheet" href="style.css"/>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="background" class="fullscreen"></div>
|
|
|
|
<div id="content">
|
|
<div id="canvas-container" class="fullscreen"></div>
|
|
</div>
|
|
|
|
</body>
|
|
|
|
<script type="module" src="src/js/Start.js"></script>
|
|
|
|
</html>
|
|
|
|
|