Write html code to create drop down list of 5 cricket player names. It should allow multiple selection by the user. Buttons should be provided for clearing and submitting the form
Answers
Answered by
1
Explanation:
<div class="dropdown">
<button class="dropbtn">Dropdown</button>
<div class="dropdown-content">
<a href="#">Link 1</a>
<a href="#">Link 2</a>
<a href="#">Link 3</a>
</div>
</div>
Similar questions