Ticker

10/recent/ticker-posts

Header Ads Widget

Fahrenheit to Celsius Converter Source Code

VS Code Utility

https://www.vseducations.in

Fahrenheit to Celsius Converter



Result:

Fahrenheit to Celsius Converter Source Code



According to above preview, here is the simplified example of source code of Fahrenheit to celsius converter.

Creating an HTML page for a Fahrenheit to Celsius converter involves using HTML for the structure, CSS for styling, and JavaScript for the functionality. Here’s a basic example:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Fahrenheit to Celsius Converter</title>
    <style>
    
#main-container {
         background:lightblue;
     border:2px solid blue;
     padding:20px;
     border-radius:10px;
     text-align:center;
margin:10px;
box-shadow:6px 6px 6px #000;
  }
  
input[type=number]{
     border:2px solid black;
     padding:5px;
     border-radius:10px;
     text-align:center;
     margin:10px;
width:60%;
font-size:18px;
  }
  
  h2 {
      
        font-family:helvetica;
color:red;
padding:auto 10px;
border-radius:10px;
       }
label {
        font-size:22px;
font-family:helvetica;
font-weight:600;
      }

#result {
        font-size:22px;
font-family:helvetica;
font-weight:600;
      }

  </style>
    </style>
</head>
<body>
<div id="main-container">
    <h2>VS Code Utility</h2>
    <h2>https://www.vseducations.in</h2>
    <h2>Fahrenheit to Celsius Converter</h2>

    <label for="fahrenheit">Enter Fahrenheit temperature:</label><br><br>
    <input type="number" id="fahrenheit" placeholder="Enter temperature" oninput="convertTemperature()">

    <p id="result">Result: </p>
</div>
    <script>
        function convertTemperature() {
            var fahrenheitInput = document.getElementById("fahrenheit").value;
            var celsiusResult = (fahrenheitInput - 32) * 5/9;
            document.getElementById("result").innerHTML = "Result: " + celsiusResult.toFixed(2) + "°C";
        }
    </script>

</body>
</html>

Explanation

HTML Structure:The structure of the page includes a div container with the class converter to hold the input field, button, and result display.An input element for entering the Fahrenheit value.A button element to trigger the conversion.A div element with the id result to display the conversion result.

CSS Styling:Basic styles for centering the converter on the page, adding padding, margin, and box shadow for aesthetics.Styles for input fields and buttons to ensure they are user-friendly and visually appealing.

JavaScript Functionality:The convertTemperature function reads the input value, performs the conversion calculation, and updates the result div with the converted value.Basic input validation is included to prompt the user to enter a value if the input field is empty.This example provides a simple, clean interface for converting Fahrenheit to Celsius with responsive and user-friendly design.

Post a Comment

0 Comments