-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (26 loc) · 1.07 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
<!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 Calculator</title>
<link rel="stylesheet" href="css/styles.css" />
</head>
<body>
<div class="container">
<h1>Kaprekar's Constant Calculator</h1>
<div class="nav-buttons">
<a href="graphs.html" class="nav-btn">View Graphs</a>
<a href="loops.html" class="nav-btn">Loop Calculator</a>
</div>
<div class="input-section">
<input type="number" id="numberInput" placeholder="Enter a 4-digit number" />
<button onclick="calculateKaprekar()">Calculate</button>
<button onclick="resetCalculator()" class="reset-btn">Reset</button>
</div>
<div id="steps-display">Steps Count: <span id="steps-count">0</span></div>
<div id="result"></div>
</div>
<script src="js/script.js"></script>
</body>
</html>