Untitled

 avatar
unknown
plain_text
a year ago
554 B
8
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Birthday Songs</title>
</head>
<body>
    <h1>Find Songs Released on Your Birthday</h1>
    <form id="birthdayForm">
        <label for="birthday">Enter your birthday:</label>
        <input type="date" id="birthday" name="birthday" required>
        <button type="submit">Submit</button>
    </form>
    <div id="results"></div>

    <script src="app.js"></script>
</body>
</html>
Editor is loading...
Leave a Comment