<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" href="styles.css"> <title>Age Calculator</title> </head> <body> <div id="age-calculator"> <h2>Age Calculator</h2> <label for="birth-date">Enter your birthdate:</label> <input type="date" id="birth-date"> <button id="calculate-button">Calculate Age</button> <p id="result"></p> </div> <script src="script.js"></script> </body> </html>

Leave a Comment

Your email address will not be published. Required fields are marked *