HTML5-ThreeJS-3D / index.html
awacke1's picture
Update index.html
b6059e7
raw
history blame contribute delete
461 Bytes
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Tower Defense Game</title>
<style>
body {
margin: 0;
padding: 0;
overflow: hidden;
}
canvas {
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
<script src="game.js"></script>
</body>
</html>