first commit
This commit is contained in:
commit
45faac5b14
4 changed files with 603 additions and 0 deletions
26
index.html
Normal file
26
index.html
Normal file
|
@ -0,0 +1,26 @@
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<title>Numeral conversion</title>
|
||||
<script type="module" src="script.js"></script>
|
||||
<link rel="stylesheet" href="style.css">
|
||||
</head>
|
||||
<body>
|
||||
<main>
|
||||
<div id="decimal-container">
|
||||
<label for="decimal">Western Arabic</label>
|
||||
<input type="number" id="decimal" min="0" value="2025">
|
||||
</div>
|
||||
<dl id="systems">
|
||||
</dl>
|
||||
</main>
|
||||
<footer>
|
||||
<p>This page renders your chosen number in as many numeral systems as it can.</p>
|
||||
<p>I've mainly worked off wikipedia and don't have real-life experience of most of these systems, so it's quite likely that it gets some things wrong.</p>
|
||||
<p>If you have a correction, please <a href="mailto:christian+numerals@lawson-perfect.uk">email me</a>.</p>
|
||||
<p>made by <a href="https://somethingorotherwhatever.com">clp</a></h1>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue