forked from Minion3665/twoThirds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (28 loc) · 1.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>3/3 to a digit!</title>
</head>
<body style="max-width: 100vw; overflow:scroll;" onload="loaded()">
<h1>
3/3 to a digit! If you've used <a href="https://third.pinea.dev">third.pinea.dev</a> and <a href="https://twothirds.starrysky.fyi">twothirds.starrysky.fyi</a> and been frustrated by the limitation of it only giving you 1/3 or 2/3 not 3/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() {
document.getElementById("thing").innerHTML = "1"
}
</script>
<p>
Please contact me at <a href="mailto:third@pinea.dev,a@starrysky.fyi,support@clicks.codes">support@clicks.codes</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 only 2/3, please check out our partner site at <a href="https://twothirds.starrysky.fyi">twothirds.starrysky.fyi<a>
</p>
</body>
</html>