-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (30 loc) · 1.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Score 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">
<link rel="stylesheet" type="text/css" href="score.css">
<style type="text/css">
.winner {
color: green;
}
</style>
</head>
<body>
<h1><span id="span1">0</span> to <span id="span2">0</span></h1>
<p>playing till : <span id="span3">5</span></p>
<input type="number" name=""> <br>
<button id="btn-p1" class="btn btn-primary">Player 1</button>
<button id="btn-p2" class="btn btn-primary">Player 2</button>
<button id="reset" class="btn btn-danger">reset</button>
<h4>Instruction :</h4>
<p>The one who gets <span id="span4">5</span> points first is the winner <br>All the Best</p>
<script
src="https://code.jquery.com/jquery-3.3.1.js"
integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60="
crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<script type="text/javascript" src="score.js"></script>
</body>
</html>