Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
dirtlordthezombieking authored Nov 11, 2023
1 parent c0a9ed9 commit d452e4a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,13 @@
<link rel="stylesheet" href="assets/stylesheets/main.css">
</head>
<body>
<img class="catagory_img", id="bee" src="https://raw.githubusercontent.com/dirtlordthezombieking/Bee-Game-Web-/assets/images/bee.png" alt="bee">
<canvas id="Canvas" width="800" height="1200"></canvas>
<script>
const canvas = document.getElementById("Canvas");
const ctx = canvas.getContext("2d");
ctx.fillStyle = "#FF0000";
ctx.fillRect(0, 0, 600, 1000);
function tap()
{

Expand Down

0 comments on commit d452e4a

Please sign in to comment.