Age calculater

Age Calculator

Age Calculator

``` 2. **styles.css:** ```css body { font-family: Arial, sans-serif; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; } .container { text-align: center; } button { margin-top: 10px; padding: 5px 10px; cursor: pointer; } ``` 3. **script.js:** ```javascript function calculateAge() { var birthdate = document.getElementById("birthdate").value; if (birthdate === "") { alert("Please enter your birthdate!"); return; } var birthYear = new Date(birthdate).getFullYear(); var currentYear = new Date().getFullYear(); var age = currentYear - birthYear; document.getElementById("result").innerHTML = "Your age is: " + age + " years."; } ``` This simple web page allows the user to input their birthdate, and when they click the "Calculate Age" button, it displays their age in years.

Comments

Popular posts from this blog

Sort Text Lines

Adsence revenue calculator