How to create a temperature converter with HTML and JavaScript?



To create a temperature converter with HTML and JavaScript, the code is as follows −

Example

 Live Demo

<!DOCTYPE html> <html> <head> <style>    body{       font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;    }    input,span{       font-size: 20px;    } </style> </head> <body> <h1>Temperature Converter</h1> <h2>Type Temperature in celcius to convert it into fahrenheit</h2> <p> <label>Celcius</label> <input id="inputKG" type="number" placeholder="Celcius" oninput="CtoFConverter(this.value)" onchange="CtoFConverter(this.value)"> </p> <p>Fahrenheit: <span class="fahrenheit"></span></p> <script>    function CtoFConverter(temp) {       document.querySelector(".fahrenheit").innerHTML=(temp-32)/1.8;    } </script> </body> </html>

Output

The above code will produce the following output −

On entering temperature in celcius −

Updated on: 2020-05-12T13:43:48+05:30

768 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements