Skip to content

Instantly share code, notes, and snippets.

@aacassandra
Created May 28, 2020 03:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aacassandra/3a0bd83132cdf1c21e374abfae37951e to your computer and use it in GitHub Desktop.
Save aacassandra/3a0bd83132cdf1c21e374abfae37951e to your computer and use it in GitHub Desktop.
Belajar HTML: Membuat Tombol Radio (26/33)
<!DOCTYPE html>
<html>
<head>
<title>sahabatcoding</title>
</head>
<body>
<form action="" method="">
<label for="man">laki-laki</label>
<input type="radio" name="gender" id="man" value="man">
<label for="woman">perempuan</label>
<input type="radio" name="gender" id="woman" value="woman">
<label for="another">lainnya</label>
<input type="radio" name="gender" id="another" value="another">
</form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment