-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
114 lines (89 loc) · 4.21 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
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!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>Crystal Collector</title>
<!-- CSS reset -->
<link type="text/css" rel="stylesheet" href="assets/css/reset.css">
<!-- Bootstrap CDN -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
crossorigin="anonymous"></script>
<!-- external CSS -->
<link type="text/css" rel="stylesheet" href="assets/css/style.css">
<!-- link to the external Javascript file: game.js -->
<script src="assets/javascript/game.js"></script>
</head>
<body>
<!-- Main container -->
<div class="container">
<!-- Header, containing only the title of the Game -->
<header class="masthead">
<div class="container h-100">
<div class="row h-100 align-items-center">
<div class="col-12 text-center">
<h1 class="font-weight-light">Crystal Collector Game!</h1>
</div>
</div>
</div>
</header>
<!-- Body, containing the game details -->
<section>
</section>
<section class="py-3">
<div class="container">
<!-- First Row containing the scores and randomly generated number -->
<div class="row border">
<div class="col border text-right">
<span id="randomNumber"></span>
</div>
<div class="col border">
<span id="rNumCrystal"></span>
</div>
</div>
<!-- Second row contains the crystal images -->
<div class="row pt-2 pb-2">
<div class="col border myCol text-center align-self-center pt-1" >
<img class="img-responsive" id="crystal1" src="assets/images/1.PNG" >
</div>
<div class="col border myCol text-center align-self-center pt-1">
<img class="img-responsive" id="crystal2" src="assets/images/2.PNG">
</div>
<div class="col border align-self-center myCol text-center pt-1 ">
<img class="img-responsive" id="crystal3" src="assets/images/3.PNG">
</div>
<div class="col border myCol text-center align-self-center pt-1">
<img class="img-responsive" id="crystal4" src="assets/images/4.png">
</div>
</div>
<div class="row">
<div class="col border text-right">
Wins: <span id="wins"></span>
</div>
<div class="col border">
Loses: <span id="loses"></span>
</div>
</div>
</div>
</section>
<!-- Footer, containing the copyright only -->
<footer class="container">
<!-- Copyright -->
<div class="footer-copyright text-center py-3">© 2019 Copyright:
<a href="https://github.com/eidmuha"> Eid</a>
</div>
<!-- Copyright -->
</footer>
</div>
</body>
</html>