-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (30 loc) · 1.35 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
<!doctype html>
<html>
<head>
<meta name = "viewport" content = "width=device-width, length=device-length">
<title>Bouncing Disks</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-uWxY/CJNBR+1zjPWmfnSnVxwRheevXITnMqoEIeG1LJrdI0GlVs/9cVSyPYXdcSF" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-kQtW33rZJAHjgefvhyyzcGF3C5TFyBQBA13V1RKPf4uH+bwyzQxZ6CmMZHmNBEfJ" crossorigin="anonymous"></script>
<link rel="stylesheet" type="text/css" href="css/index.css" />
<head>
</head>
<body>
<div id="navbar" class="text-center">
<div class="btn-group" role="group">
<button id='btn_start' class='btn btn-outline-light'>Start</button>
<button id='btn_pause' class='btn btn-outline-light'>Pause</button>
<button id='btn_reset' class='btn btn-outline-light'>Reset</button>
<label for="time_limit" class="form-label"></label>
<input type="text" class="form-control" id="time_limit" placeholder="Type Game Time In Ms.">
</div>
</div>
<div id="container" class="text-center">
<div id="message"></div>
<div id="disk1"></div>
<div id="disk2"></div>
<div id="disk3"></div>
<div id="disk4"></div>
</div>
</body>
<script src="js/index.js"></script>
</html>