Computer Science, asked by ayushrath37, 5 hours ago

Consider the below webpage.
rem/dd/yyyy
05/01/2017
Republic Day
May Day
Independence Day
08/15/2017
h
Other..
Which of the following used to do this:​

Answers

Answered by anuraghembrom05
1

Answer:

Republic Day May Day Independence Day 08/15/2017 h. Other.. Which of the following used to do this:.

Answered by shelbyjones21
11

Answer:

<input type="date" id="date" name="date" list="holidays">

<datalist id="holidays">

   <option label="Republic Day">2017-01-26</option>

   <option label="May Day">2017-05-01</option>

   <option label="Independence Day">2017-08-15</option>

</datalist>

Explanation:

Similar questions