Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.65 KB | None | 0 0
  1. <div id="calculadora">
  2. <fieldset>
  3.     <legend>Calculadora</legend>
  4.     <div id="erro"></div>
  5.     <label>
  6.         <span>Operador</span>
  7.         <select id="operador">
  8.             <option></option>
  9.             <option value="somar">Somar</option>
  10.             <option value="diminuir">Diminuir</option>
  11.             <option value="dividir">Dividir</option>
  12.             <option value="multiplicar">Multiplicar</option>
  13.         </select>
  14.     </label>
  15.     <label>
  16.         <span>Valor 1</span>
  17.         <input type="text" id="valor" />
  18.     </label>
  19.     <label>
  20.         <span>Valor 2</span>
  21.         <input type="text" id="valor2" />
  22.     </label>
  23.     <input type="button" onclick="calcular()" id="calc" value="Calcular" />
  24.     <div id="showResult"></div>
  25. </fieldset>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement