forked from Minion3665/twoThirds
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add calculation for 2 significant figures
This feature was requested by emailing our support email ([email protected]). If you have extra feature needs for threethirds, please contact us at [email protected]
- Loading branch information
1 parent
ac63115
commit 1ae55d5
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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.0" | ||
} | ||
</script> | ||
<p> | ||
Please contact me at <a href="mailto:[email protected],[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 only 2/3, please check out our partner site at <a href="https://twothirds.starrysky.fyi">twothirds.starrysky.fyi<a> | ||
</p> | ||
</body> | ||
</html> |