Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
Codetoil authored Nov 24, 2023
1 parent f531c64 commit a0f9550
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,23 @@

<title>3d_game</title>

<style src="css/style.css"></style>
<style>
html,
body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
}

#renderCanvas {
width: 100%;
height: 100%;
display: block;
font-size: 0;
}
</style>
</head>
<body>
<canvas id="renderCanvas"></canvas>
Expand Down

0 comments on commit a0f9550

Please sign in to comment.