How to create drop down tag in html CLICK READ MORE


                        


<form>
<select name="select" onchange="window.open(this.options[this.selectedIndex].value,'_blank')">
   
                                <option value="https://www.msn.com/en-in">MSN</option>
    <option value="https://www.flipkart.com/">Flipcart</option>
    <option value="https://www.amazon.in/">Amazon</option>
        </select>

</form>




Post a Comment

1 Comments