26 lines
No EOL
986 B
HTML
26 lines
No EOL
986 B
HTML
<!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> |