Advertisement
urutehe1

ui kalkulator

Sep 16th, 2019
674
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.68 KB | None | 0 0
  1. <html>
  2. <head>
  3.     <title>Kalkulator Infosoft </title>
  4.    
  5.     </head>
  6.     <body>
  7.         <div class="Kalkulator">
  8.             <h2>kalkulator online</h2>
  9.             <form method="post" action="index.php">
  10.                 <input type="text" name="bil1" autocomplete="off" placeholder="Masukkan Bilangan Pertama"></br>
  11.                 <input type="text" name="bil2" autocomplete="off" placeholder="Masukkan Bilangan Kedua">
  12.                 <select class="opt" name="operasi">
  13.                     <option value="tambah">+</option>
  14.                     <option value="kurang">-</option>
  15.                     <option value="kali">*</option>
  16.                     <option value="bagi">/</option>
  17.                 </select>
  18.                 <button type="submit" name="hitung" value="Hitung">Hitung</button>
  19.             </form>
  20.         </div>
  21. </body>
  22. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement