HTML Form Element

HTML Form Element


<!DOCTYPE html>
<html>
<body>

<form action="/submit_page.php">
  <select name="Codes">
    <option value="yaak">Yaak</option>
    <option value="developers">Developers</option>
    <option value="coding">Coding</option>
    <option value="html">Html</option>
  </select>
  <br><br>
  <input type="submit">
</form>

</body>
</html>

Comments