Here’s a simple Extra Space Remover Calculator using JavaScript, HTML, and CSS. This tool allows users to input text and removes extra spaces between words while keeping single spaces intact.
space-remover.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Extra Space Remover</title> <style> body { font-family: Arial, sans-serif; display: flex; justify-content: center; align-items: center; height: 100vh; background-color: #f4f4f4; } .container { background: #fff; padding: 20px; box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); border-radius: 8px; text-align: center; } textarea { width: 100%; height: 100px; margin-bottom: 10px; } button { padding: 10px; background: #007bff; color: white; border: none; cursor: pointer; border-radius: 5px; } button:hover { background: #0056b3; } </style> </head> <body> <div class="container"> <h2>Extra Space Remover</h2> <textarea id="inputText" placeholder="Enter your text here..."></textarea> <button onclick="removeExtraSpaces()">Remove Extra Spaces</button> <h3>Result:</h3> <textarea id="outputText" readonly></textarea> </div> <script> function removeExtraSpaces() { let input = document.getElementById("inputText").value; let output = input.replace(/\s+/g, ' ').trim(); document.getElementById("outputText").value = output; } </script> </body> </html>