Guest User

Untitled

a guest
Jun 9th, 2023
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.24 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.  
  4. <head>
  5.     <meta charset="UTF-8">
  6.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  8.     <title>number converter</title>
  9.     <link rel="stylesheet" href="style.css">
  10. </head>
  11.  
  12. <body>
  13.  
  14.     <h2>Number Converter</h2>
  15.     <form action="/convert" method="post">
  16.  
  17.         Enter to convert: <input type="text" name="inputValue">
  18.         <div class="input">
  19.             <input type="radio" id="binary" name="numberSystem" value="binary">
  20.             <label for="binary">Binary</label>
  21.         </div>
  22.  
  23.         <div class="input">
  24.             <input type="radio" id="decimal" name="numberSystem" value="decimal">
  25.             <label for="decimal">Decimal</label>
  26.         </div>
  27.  
  28.         <div class="input">
  29.             <input type="radio" id="octal" name="numberSystem" value="octal">
  30.             <label for="octal">Octal</label>
  31.         </div>
  32.  
  33.         <div class="input">
  34.             <input type="radio" id="hexadecimal" name="numberSystem" value="hexadecimal">
  35.             <label for="hexadecimal">Hexadecimal</label>
  36.         </div>
  37.  
  38.  
  39.         <button type="submit">Convert</button>
  40.  
  41.     </form>
  42.  
  43.  
  44. </body>
  45.  
  46. </html>
Advertisement
Add Comment
Please, Sign In to add comment