Skip to content

Commit

Permalink
complete archery game (#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
Git21221 authored Oct 2, 2023
2 parents 6f8f589 + 5786e11 commit cd9e2ef
Show file tree
Hide file tree
Showing 3 changed files with 658 additions and 0 deletions.
27 changes: 27 additions & 0 deletions 2D archery game/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<!DOCTYPE html>
<html>
<head>
<title>Archery Game</title>
<meta name="viewport" content="width=device-width, initial-scale=1" >
<meta charset="utf-8">
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<div id="mainContainer">
<canvas id="myCanvas"></canvas>
<canvas id="animCanvas"></canvas>
<h1 id="score">0</h1>
<div id="showPoint">
<div id="timerDiv"></div>
<p id="arrs">&uarr;</p><span class="u">&uarr; +4</span>

</div>
<div id="startMenu">
<h1 id="title"><span style="font-size:60px">A</span>RCHERY<br><span style="font-size:60px">G</span>AME</h1>
<button>TAP TO START</button>
<h2><span id="best">0</span><br>Best</h2>
</div>
</div>
</body>
<script src="./script.js"></script>
</html>
Loading

0 comments on commit cd9e2ef

Please sign in to comment.