The Select Element

<!DOCTYPE html>
<html>
<body>

<h2>The select Element</h2>
<p>The select element defines a drop-down list:</p>

<form action="/action_page.php">
  <select name="cars">
    <option value="Hanifah">Hanifah</option>
    <option value="Alfi">Alfi</option>
    <option value="Andre">Andre</option>
    <option value="Fahmi">Fahmi</option>
  </select>
  <br><br>
  <input type="submit">
</form>

</body>
</html>


Komentar