UNPKG

ether-converter

Version:
76 lines (75 loc) 2.35 kB
<!DOCTYPE html> <html lang="en-US"> <head> <meta charset="UTF-8"> <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=yes"> <title>Ether Converter</title> <style> body { font-size: 16px; } h1 { font-weight: normal; font-size: 1em; } label { display: inline-block; width: 100px; } input[type="text"] { width: 200px; } </style> </head> <body> <div class="container"> <h1>Ether converter</h1> <div class="row"> <label>wei (10<sup>-18</sup>)</label> <input type="text" class="wei"> </div> <div class="row"> <label>kwei (10<sup>-15</sup>)</label> <input type="text" class="kwei"> </div> <div class="row"> <label>mwei (10<sup>-12</sup>)</label> <input type="text" class="mwei"> </div> <div class="row"> <label>gwei (10<sup>-9</sup>)</label> <input type="text" class="gwei"> </div> <div class="row"> <label>szabo (10<sup>-6</sup>)</label> <input type="text" class="szabo"> </div> <div class="row"> <label>finney (10<sup>-3</sup>)</label> <input type="text" class="finney"> </div> <div class="row"> <label>ether (1)</label> <input type="text" class="ether" value="1"> </div> <div class="row"> <label>kether (10<sup>3</sup>)</label> <input type="text" class="kether"> </div> <div class="row"> <label>mether (10<sup>6</sup>)</label> <input type="text" class="mether"> </div> <div class="row"> <label>gether (10<sup>9</sup>)</label> <input type="text" class="gether"> </div> <div class="row"> <label>tether (10<sup>12</sup>)</label> <input type="text" class="tether"> </div> </div> <a href="https://github.com/miguelmota/ether-converter" target="_blank"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://camo.githubusercontent.com/38ef81f8aca64bb9a64448d0d70f1308ef5341ab/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f6461726b626c75655f3132313632312e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"></a> <script src="dist/bundle.js"></script> </body> </html>