Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>number converter</title>
- <link rel="stylesheet" href="style.css">
- </head>
- <body>
- <h2>Number Converter</h2>
- <form action="/convert" method="post">
- Enter to convert: <input type="text" name="inputValue">
- <div class="input">
- <input type="radio" id="binary" name="numberSystem" value="binary">
- <label for="binary">Binary</label>
- </div>
- <div class="input">
- <input type="radio" id="decimal" name="numberSystem" value="decimal">
- <label for="decimal">Decimal</label>
- </div>
- <div class="input">
- <input type="radio" id="octal" name="numberSystem" value="octal">
- <label for="octal">Octal</label>
- </div>
- <div class="input">
- <input type="radio" id="hexadecimal" name="numberSystem" value="hexadecimal">
- <label for="hexadecimal">Hexadecimal</label>
- </div>
- <button type="submit">Convert</button>
- </form>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment