forked from PineaFan/oneThird
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
34 lines (34 loc) · 1.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>2/3 to a million digits!</title>
</head>
<body style="max-width: 100vw; overflow:scroll;" onload="loaded()">
<h1>
2/3 to a million digits! If you've used <a href="https://third.pinea.dev">third.pinea.dev</a> and been frustrated by the limitation of it only giving you 1/3 not 2/3, this is the site for you!
</h1>
<p id="thing" style="width: 90vw; margin-left: 5vw; word-wrap: break-word;">Please wait while we fetch the latest data</p>
<script>
function loaded() {
let value = ""
for (let i = 0; i < 9999; i++) {
value += "6".repeat(10)
document.getElementById("thing").innerHTML = "0." + value
}
value += "6".repeat(9) + "7"
document.getElementById("thing").innerHTML = "0." + value
}
</script>
<p>
Please contact me at <a href="mailto:[email protected],[email protected]">[email protected]</a> if you require more or less accuracy
</p>
<p>
If you're looking for only 1/3, please check out our partner site at <a href="https://third.pinea.dev">third.pinea.dev</a>
</p>
<p>
If you're looking for 3/3, please check out our partner site at <a href="https://threethirds.clicks.codes">threethirds.clicks.codes</a>
</p>
</body>
</html>