-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathscore.html
56 lines (56 loc) · 2.28 KB
/
score.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
<!--GoblinGo Game
Author: Aadesh Nichite
It is a simple game application-->
<html>
<head>
<title>GoblinGo</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css?family=Luckiest+Guy&display=swap" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="./gameCSS/app.css">
<link rel="stylesheet" href="./css/style.css">
</head>
<body onload="init1();">
<div class="container-fluid add-ground">
<div class="row d-flex justify-content-center game-bar">
<div class="col-1">
</div>
<div class="col-2">
<p class="game-name">GoblinGO</p>
</div>
<div class="col-3">
</div>
</div>
<div class="row d-flex justify-content-center">
<div class="col-2"></div>
<div class="col-3">
<img src="images/player-1.png" alt="player-1">
<p id="p1score" class="score">20</p>
</div>
<div class="col-3">
<img src="images/player-2.png" alt="player-2">
<p id="p2score" class="score">20</p>
</div>
</div>
<div class="row d-flex justify-content-center inputs">
<div id="score-box">
<div class="col-3">
<p class="winner">WINNER</p>
<p id="playerWin" style="color:#ff7700; margin-left:20px; font-size:20px; font-weight:bold;">Player 1</p>
</div>
</div>
</div>
<div class="row d-flex justify-content-center">
<div class="btn-position">
<input type="button" class="btn btn-warning start-btn" value="PLAY AGAIN" onclick="end()"/>
</div>
</div>
</div>
</body>
<script src="./gameJS/app.js"></script>
</html>