I'm looking to know if it's possible to have an input of the type date to have the default year as 2017. All I can do is set a default date which includes the day and the month too:
<input type="date" value="2017-12-21">
<br><br>
<input type="date" value="2017-mm-dd">
<br><br>
<input type="date" value="2017">
<br><br>
<input type="date">I want it to display the day as dd, the month as mm and the year as 2017.
 
     
     
     
    