Write HTML code to display Drop down list of five cricket players name. The list should display Sachin Tendulkar,Rahul Dravid,M.S. Dhoni,Virendra sahawagh and Virat kohli. It should allow multiple selection by user. Buttons should be provided for submitting the form and clearing the form.
Answers
Answered by
33
Answer:
<html>
<head>
<title>drop down list of 5 cricket players</title>
</head>
<body>
<h1>sachin tendukar</h1><br>
<h1>rahul dravid</h1><br>
<h1>m.s.dhoni</h1><br>
<h1>virendra sahawagh</h1><br>
<h1>virat kohli</h1>
</body>
</html>
Similar questions