C# Programming: Dropdownlist in HTML in easy way | Select Tag in HTML with options| Lear...

Wednesday, June 27, 2018

Dropdownlist in HTML in easy way | Select Tag in HTML with options| Lear...





This video demonstrate how to make dropdownlist in html using select tag. Three options are made with select and option tag.



code:

<!DOCTYPE html>

<html>

<head>

      <title>Dropdown list</title>

</head>

<body>

<h2> Select Any Fruits</h2>



<form action="process.php" >

    <select name="fruits">

      <option value="mango">Mango</option>

<option value="apple">Apple</option>

<option value="orange">Orange</option>

    </select>

    <br/>

<br/>

    <input type="submit" name="submit">

</form>

</body>

</html>

No comments:

Post a Comment