Created
May 28, 2020 03:00
-
-
Save aacassandra/3a0bd83132cdf1c21e374abfae37951e to your computer and use it in GitHub Desktop.
Belajar HTML: Membuat Tombol Radio (26/33)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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