-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathloops.html
48 lines (43 loc) · 1.47 KB
/
loops.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kaprekar's Constant Loop</title>
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/loops-styles.css">
</head>
<body>
<div class="container">
<h1>Kaprekar's Constant Loop Calculator</h1>
<div class="nav-buttons">
<a href="graphs.html" class="nav-btn">View Graphs</a>
<a href="index.html" class="nav-btn">Home</a>
</div>
<div class="control-buttons">
<button onclick="startProcess()" id="startBtn">Start</button>
<button onclick="stopProcess()" id="stopBtn">Stop</button>
<button onclick="resetProcess()" id="resetBtn">Reset</button>
</div>
<div id="loading-indicator" style="display: none;">
Processing... Please wait
</div>
<div id="current-status">
<div>Current Number: <span id="current-number">-</span></div>
</div>
<div id="results-container">
<table id="results-table">
<thead>
<tr>
<th>Number</th>
<th>Steps to 6174</th>
</tr>
</thead>
<tbody id="results-body">
</tbody>
</table>
</div>
</div>
<script src="js/loops.js"></script>
</body>
</html>