Skip to content

Commit

Permalink
Create index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
kubowania authored Apr 17, 2020
1 parent 27db338 commit 06370c7
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Whack a mole</title>
<link rel="stylesheet" href="style.css">
</head>
<body>

<h1>Whack a mole!</h1>

<h2>Your score:</h2>
<h2 id="score">0</h2>

<h2>Seconds left:</h2>
<h2 id="time-left">60</h2>

<div class="grid">
<div class="square" id="1"></div>
<div class="square" id="2"></div>
<div class="square" id="3"></div>
<div class="square" id="4"></div>
<div class="square" id="5"></div>
<div class="square" id="6"></div>
<div class="square" id="7"></div>
<div class="square" id="8"></div>
<div class="square" id="9"></div>
</div>

</body>
<script src="app.js" charset="utf-8"></script>
</html>

0 comments on commit 06370c7

Please sign in to comment.