Day Counter – Day Difference Calculator

HTML code of Day Counter – Day Difference Calculator

<!DOCTYPE html>
<html lang=”en”>
<head>
<meta charset=”UTF-8″>
<meta name=”viewport” content=”width=device-width, initial-scale=1.0″>
<title>Day Difference Calculator</title>
<style>
/* Optional CSS styling for the calculator */
/* You can customize this according to your website’s design */
body {
font-family: Arial, sans-serif;
}
.calculator-container {
max-width: 400px;
margin: 0 auto;
padding: 20px;
background-color: #f9f9f9;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
input[type=”date”] {
width: 100%;
padding: 10px;
margin-bottom: 10px;
border: 1px solid #ccc;
border-radius: 5px;
box-sizing: border-box;
}
button {
width: 100%;
padding: 10px;
background-color: #007bff;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
}
button:hover {
background-color: #0056b3;
}
</style>
</head>
<body>

<div class=”calculator-container”>
<h2>Day Difference Calculator</h2>
<label for=”start-date”>Start Date:</label>
<input type=”date” id=”start-date”>
<label for=”end-date”>End Date:</label>
<input type=”date” id=”end-date”>
<button onclick=”calculateDateDifference()”>Calculate</button>
<p id=”result”></p>
</div>

<script>
function calculateDateDifference() {
// Get the values of the start date and end date input fields
var startDate = new Date(document.getElementById(“start-date”).value);
var endDate = new Date(document.getElementById(“end-date”).value);

// Calculate the difference in milliseconds
var difference = endDate.getTime() – startDate.getTime();

// Convert milliseconds to days
var daysDifference = Math.floor(difference / (1000 * 60 * 60 * 24));

// Display the result
document.getElementById(“result”).innerText = “Difference in days: ” + daysDifference;
}
</script>

</body>
</html>

Leave a Comment

Exit mobile version