Advertisement
Guest User

Untitled

a guest
May 10th, 2012
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.25 KB | None | 0 0
  1. <div class="wrap">
  2.             <h1 class="heading">
  3.                 Internet speed converter
  4.             </h1>
  5.             <h3 class="subheading">Megabyte !== Megabit</h3>
  6.             <form class="form" name="units" method="post" id="form">
  7.                 <div class="inputs">
  8.                     <input type="text" name="from" id="from">
  9.                     <select name="fromWhat" id="fromWhat">
  10.                         <option>Convert from</option>
  11.                         <option value="1">Kilobits</option>
  12.                         <option value="1024">Megabits</option>
  13.                         <option value="1048576">Gigabits</option>
  14.                     </select>
  15.                     <br>
  16.                     <input type="text" name="to" id="to" readonly="readonly">
  17.                     <select id="toWhat" name="toWhat">
  18.                         <option>Convert to</option>
  19.                         <option value="1">Kilobytes</option>
  20.                         <option value="1024">Megabytes</option>
  21.                         <option value="1048576">Gigabytes</option>
  22.                     </select>
  23.                 </div>
  24.                 <br>
  25.                 <input class="bttn" id="calc" type="button" value="Convert">
  26.             </form>
  27.         </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement