<!DOCTYPE html> <html> <body> <h1>Display a Month Input Control</h1> <p>If the browser supports it, a date picker pops up when entering the input field.</p> <form action="/action_page.php"> <label for="bdaymonth">Birthday (month and year):</label> <input type="month" id="bdaymonth" name="bdaymonth"> <input type="submit"> </form> </body> </html>