<!DOCTYPE html><html><head> <title>Age Calculator</title> <style> /* Add your CSS styling here */ </style></head><body bgcolor=”navy blue”> <h1>Age Calculator</h1> <label for=”dob”>Enter your Date of Birth:</label> <input type=”date” id=”dob”> <button onclick=”calculateAge()”>Calculate Age with month and days</button> <p>Your age is: <span id=”age”></span></p> <a href=”https://www.youtube.com/channel/CHANNEL_ID”>Motu Patlu YouTube Channel</a> <script> function calculateAge() { const dobInput = document.getElementById(“dob”); const dob = new Date(dobInput.value); const now = new Date(); const age = now.getFullYear() – dob.getFullYear(); document.getElementById(“age”).textContent = age + ” years old”; } </script></body></html>