Advertisement
Guest User

Xxx

a guest
Jan 27th, 2020
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <title>Feet to Meters Length Converter</title>
  4. <body>
  5.  
  6. <h2>Inches to meters converter</h2>
  7. <p>Type a value in the Feet field to convert the value to Meters:</p>
  8.  
  9. <p>
  10. <label>Inches</label>
  11. <input id="inputFeet" type="number" placeholder="enter inches" oninput="LengthConverter(this.value)" onchange="LengthConverter(this.value)">
  12. </p>
  13. <p>Meters: <span id="outputMeters"></span></p>
  14. <i>Design & developed by students of 57 Batch,Department of Pharmacy,UODA</i>
  15. <script>
  16. function LengthConverter(valNum) {
  17. document.getElementById("outputMeters").innerHTML=valNum*0.0254;
  18. }
  19. </script>
  20. </body>
  21. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement