Monday, May 18, 2015

حساب الفارانايت تاكست بوكس افنت

حساب الفارانايت تاكست بوكس افنت

<html>
  <head>
  <title> Fun with Text Boxes </title>
  <script type="text/javascript">
    function FahrToCelsius(tempInFahr)
        {
      return (5/9)*(tempInFahr - 32);
    }
  </script>
 </head>

 <body>
  <form name="BoxForm">
    Temperature in Fahrenheit:
    <input type="text" name="Fahr" size=10 value="0"
     onChange="document.BoxForm.Celsius.value =
       FahrToCelsius(parseFloat(document.BoxForm.Fahr.value));" />
    &nbsp; <tt>----></tt> &nbsp;
    <input type="text" name="Celsius" size=10 value="" />
    in Celsius
  </form>
 </body>
</html>

Post a Comment

Whatsapp Button works on Mobile Device only

Start typing and press Enter to search