Online Html Editor | Online Html Compiler

<!DOCTYPE html> <html> <head> <title>Date Input Example</title> </head> <body> <h2>Date Input Field</h2> <form action="/submit_date" method="post"> <label for="birthday">Birthday:</label> <input type="date" id="birthday" name="birthday"> <br><br> <label for="start_month">Start Month:</label> <input type="month" id="start_month" name="start_month"> <br><br> <label for="start_week">Start Week:</label> <input type="week" id="start_week" name="start_week"> <br><br> <label for="appointment_time">Appointment Time:</label> <input type="time" id="appointment_time" name="appointment_time"> <br><br> <input type="submit" value="Submit"> </form> </body> </html>