-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadditional.html
More file actions
29 lines (29 loc) · 1.97 KB
/
additional.html
File metadata and controls
29 lines (29 loc) · 1.97 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
<html>
<head>
<title>Number Game</title>
<!-- Bootstrap requirements -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.3.1/dist/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
</head>
<body>
<div class = "text-center">
<h1 class="display-4" style="margin-bottom: 7px;">Score of the players</h1>
<div class="d-flex flex-row justify-content-center">
<div class="p-2"><p class="lead" name="aiscore">AI Score: 0</p></div>
<div class="p-2"><p class="lead" name="humanscore">Human Score: 0</p></div>
</div>
<blockquote class="blockquote">
<p class="mb-0">Choose from the available numbers below.</p>
</blockquote>
<div class="d-flex flex-row justify-content-center" name="btnspace">
<div class="p-2"><p class="lead"><button type="button" class="btn btn-outline-primary">0</button></p></div>
<div class="p-2"><p class="lead"><button type="button" class="btn btn-outline-secondary">0</button></p></div>
</div>
<p class="lead" name="gmlog">Game has initialised</p></div>
</div>
</body>
<!-- Bootstrap requirements -->
<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://cdn.jsdelivr.net/npm/popper.js@1.14.7/dist/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.3.1/dist/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
<!-- Bootstrap requirements -->
</html>