Guest User

Untitled

a guest
May 22nd, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title> Converting Temp from F to C</title>
  4. <script>
  5. function notcare() {
  6.  
  7. var pop = prompt("Gimme A Temp in Farhenit to cnvert to Celius! :)");
  8. var convert = (pop-32)*5/9
  9. alert(convert)
  10. }
  11.  
  12. </script>
  13. </head>
  14. <body>
  15. <center> <button type="button" onclick="notcare()"> Convert F to celius</button></center>
  16. </body>
  17. </html>
Add Comment
Please, Sign In to add comment