Certainly! You can create a simple HTML page with JavaScript to convert meters to inches. Here’s an example:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Meters to Inches Converter</title> </head> <body> <h1>Meters to Inches Converter</h1> <label for="metersInput">Enter length in meters:</label> <input type="number" id="metersInput" step="any" oninput="convertToInches()"> <p id="result"></p> <script> function convertToInches() { // Get the value from the input field var meters = document.getElementById("metersInput").value; // Convert meters to inches (1 meter = 39.37 inches) var inches = meters * 39.37; // Display the result document.getElementById("result").innerHTML = meters + " meters is equal to " + inches.toFixed(2) + " inches"; } </script> </body> </html>
Copy and paste this code into an HTML file, and open it in a web browser. Enter the length in meters, and the corresponding length in inches will be displayed below the input field. Note that 1 meter is approximately equal to 39.37 inches. The `toFixed(2)` method is used to display the result with two decimal places.