Answers for "auto date today in html"

3

default date in html

<input type="date" id="start" name="trip-start"
       value="2018-07-22"
       min="2018-01-01" max="2018-12-31">
Posted by: Guest on October-24-2021
10

how to display current date in html

var today = new Date();
Posted by: Guest on December-04-2019

Browse Popular Code Answers by Language