Skip to content

Instantly share code, notes, and snippets.

@aacassandra
Created May 28, 2020 14:51
Show Gist options
  • Save aacassandra/d8921e746e32f196ba16bccee01a0407 to your computer and use it in GitHub Desktop.
Save aacassandra/d8921e746e32f196ba16bccee01a0407 to your computer and use it in GitHub Desktop.
Belajar HTML: Membuat Daftar Dropdown (28/33)
<!DOCTYPE html>
<html>
<head>
<title>sahabatcoding</title>
</head>
<body>
<form action="" method="">
<label for="gender">Please selecr your gender</label>
<select id="gender">
<option value="man">Laki-laki</option>
<option value="woman" selected>Perempuan</option>
<option value="another">Lainnya</option>
</select>
</form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment