-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (57 loc) · 2.17 KB
/
Copy pathindex.html
File metadata and controls
71 lines (57 loc) · 2.17 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>Fat them Game</title>
<!-- ====== CSS file ============ -->
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
<link href="style.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Rock+Salt" rel="stylesheet">
<!-- ======== Script files ======== -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<!-- ====== Landing page ===== -->
<div id="landingPage" class="container landingPage">
<!-- ====== instructions division ====== -->
<h1 class="text-center title">Welcome to Fat them Game> for Eric Menaldo!</h1>
<p class="text-center">Game instructions:</p>
<div class="container instructions">
<ul>
<li>Move you mouse on the screen to move Eric</li>
<li>Left click to eat Cookies or Cake</li>
<li>If you eat too many Cookies You will become Fat</li>
<li>If you eat too many Cake you also will become Fat</li>
</ul>
<img class="logoHomer" src="img/ericsmile.png" alt="simpsonGame">
</div>
<button id="play" class="btn btn-success">Play</button>
</div>
<!-- ========= The game division ======= -->
<div id="game" class="container game">
<div id="score" class="score">00</div>
<div class="container">
</div>
<div id="homerSimpson"></div>
</div>
</body>
<!-- ========== End game window ======= -->
<div id="endGame" class="container endGame">
<div class="container flexbox">
<div class="text-center">Mocky is getting hungry! try again...</div>
<div class="image">
<img id="logoMarge" src="img/mocky.png" alt="margeAngry">
</div>
</div>
<div class="options">
<button id="continue" class="btn btn-default">Continue</button>
<button id="quit" class="btn btn-danger">Quit</button>
</div>
</div>
<!-- ==========Main Javascript file ========= -->
<script src="script.js"></script>
</html>