Free HTML Code | Decimal to percentage convertor html code
We will try to give you a new code for every day .
Here is a code for Decimal to percentage convertor HTML code
<html lang="en">
<head>
<meta charset="UTF-8"></meta>
<meta content="width=device-width, initial-scale=1.0" name="viewport"></meta>
<title>Decimal to Percent Converter</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
margin: 50px;
}
</style>
</head>
<body>
<h2>Decimal to Percent Converter</h2>
<label for="decimalInput">Enter Decimal:</label>
<input id="decimalInput" placeholder="Enter decimal" step="any" type="number" />
<button onclick="convertDecimalToPercent()">Convert</button>
<p id="result"></p>
<script>
function convertDecimalToPercent() {
// Get the decimal input value
var decimalInput = document.getElementById("decimalInput").value;
// Convert decimal to percent
var percent = decimalInput * 100;
// Display the result
document.getElementById("result").innerHTML = "Percent: " + percent + "%";
}
</script>
</body>
</html>
Comments
Post a Comment