Machine Rental Price Calculator
About this app
Calculate the price of renting machines for a month, 1 year, or 2 years.
Machine Rental Price Calculator Machine Rental Price Calculator Number of Machines: Number of Months: Calculate One Year Price: Two Years Price: Ten Percent of Machine's Price:
Related apps
Put this on your site
Source
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Machine Rental Price Calculator</title>
<meta name="description" content="Calculate the price of renting machines for a month, 1 year, or 2 years.">
<meta name="keywords" content="machine rental, price calculator, monthly price, yearly price">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<script type="text/javascript">
try {
document.addEventListener("DOMContentLoaded", function() {
// Function to calculate the price of renting machines
function calculatePrice() {
var numberOfMachines = parseInt($("#number-of-machines").val());
var monthlyPrice = 10000;
var months = parseInt($("#months").val());
var oneYearPrice = numberOfMachines * monthlyPrice * 12;
var twoYearsPrice = numberOfMachines * monthlyPrice * 24;
var tenPercentPrice = numberOfMachines * monthlyPrice * months / 100 * 10;
// Display the calculated prices
$("#one-year-price").text("$" + oneYearPrice.toLocaleString());
$("#two-years-price").text("$" + twoYearsPrice.toLocaleString());
$("#ten-percent-price").text("$" + tenPercentPrice.toLocaleString());
// Show the result container
$("#result-container").show();
}
// Event listener for the calculate button
$("#calculate-button").on("click", function() {
calculatePrice();
});
});
} catch (error) {
throw error;
}
</script>
<style>
body {
font-family: 'Roboto', sans-serif;
}
.container {
max-width: 600px;
margin-top: 50px;
}
h1 {
text-align: center;
margin-bottom: 30px;
}
.form-group {
margin-bottom: 20px;
}
.form-group label {
font-weight: bold;
}
.form-group input {
width: 100%;
padding: 10px;
border-radius: 5px;
border: 1px solid #ccc;
outline: none;
}
#result-container {
margin-top: 50px;
display: none;
}
#result-container p {
margin-bottom: 10px;
}
#result-container .price {
font-size: 24px;
font-weight: bold;
}
#calculate-button {
display: block;
width: 100%;
padding: 10px;
background-color: #007bff;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1>Machine Rental Price Calculator</h1>
<div class="form-group">
<label for="number-of-machines">Number of Machines:</label>
<input type="number" id="number-of-machines" min="1" value="1">
</div>
<div class="form-group">
<label for="months">Number of Months:</label>
<input type="number" id="months" min="1" value="1">
</div>
<button id="calculate-button">Calculate</button>
<div id="result-container">
<p>One Year Price: <span class="price" id="one-year-price"></span></p>
<p>Two Years Price: <span class="price" id="two-years-price"></span></p>
<p>Ten Percent of Machine's Price: <span class="price" id="ten-percent-price"></span></p>
</div>
</div>
</body>
</html>
NEW APPS
These are apps made by the community!