-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (46 loc) · 1.67 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
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html>
<head>
<title> Crystal Collector Game</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
</head>
<body>
<div class = "container">
<div class = "row">
<div class = "col-sm-6 col-sm-push-6">
<h1> This is the game information! </h1>
</div>
</div>
<div class = "row">
<div class = "col-sm-4">
<h2> Random Number Generated: <span id="randomNumber"></span></h2>
</div>
<div class = "col-sm-2">
<h2> Wins: <span id= "wins"> 0 </span></h2>
<h2> Losses: <span id= "losses"> 0 </span></h2>
</div>
</div>
<div class = "row">
<div class= "col-sm-2">
<img src= "assets/images/crystal-image.jpg" class="img-responsive crystals" id="crystal1">
</div>
<div class= "col-sm-2">
<img src= "assets/images/crystal-image.jpg" class="img-responsive crystals" id="crystal2">
</div>
<div class= "col-sm-2">
<img src= "assets/images/crystal-image.jpg" class="img-responsive crystals" id="crystal3">
</div>
<div class= "col-sm-2">
<img src= "assets/images/crystal-image.jpg" class="img-responsive crystals" id="crystal4">
</div>
</div>
<div class= "row">
<div class= "col-sm-2">
<h1> User Number: <span id="storedNumber"></span> </h1>
</div>
</div>
</div>
<script src ="assets/javascript/game.js" type="text/javascript"></script>
</body>
</html>