-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (33 loc) · 1.3 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Raining Cats</title>
<link rel="stylesheet" href="css/styles.css">
<script
src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
</head>
<body>
<h1 class="main-head">Help Jimmy save his Lucky Cats! <img class="img" src="./images/jimmy.JPG"></h1>
<h2>Two player game, the player with the better score wins!</h2>
<h2>Instructions: Move the hand over the cats to save them <br>
Each white cat is 2 points <br>
Green cats are bonus 10 points <br>
Each miss is minus 1 point
</h2>
<h2>Every time the timer runs out. The rains come down harder! Good Luck!</h2>
<form class="form">
<label>Player One's Name:</label><br>
<input type="text" id="player1Name"><br>
<label>Player Two's Name</label><br>
<input type="text" name="" id="player2Name"><br>
<button class="btn">Start Game</button>
</form>
<h1 class="bestScore">Best Score: <span id="best-score"></span></h1>
<script src="js/app.js"></script>
</body>
</html>