-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (24 loc) · 978 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Decimal to Fraction Calculator</title>
<link rel="stylesheet" type="text/css" href="css/styles.css">
</head>
<body>
<div class="page-wrapper">
<div class="calculator">
<h1>Decimal to Fraction Calculator</h1>
<p>This tool generates a fraction given a number with a decimal. Encase the repetend (infinitely repeating digits) in parentheses. For example 1/3 would be writen as: 0.(3).</p>
<div class="input-wrapper">
<input id="input" type="text" autocomplete="off" placeholder="Enter a decimal numer">
</div>
<p id="output"></p>
</div>
</div>
<footer>© Copyright 2022 RK Productions</footer>
<script src="js/obfuscated.js"></script>
</body>
</html>