Created
May 28, 2020 03:15
-
-
Save aacassandra/ac2a132e2516873d7b4559c63e97046f to your computer and use it in GitHub Desktop.
Belajar HTML: Membuat Kotak Centang / Checkbox (27/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=""> | |
<h3>Please choose your favorite fruits</h3> | |
<label for="apple">Apple</label> | |
<input type="checkbox" id="apple" value="apple"> | |
<label for="orange">Orange</label> | |
<input type="checkbox" id="orange" value="orange"> | |
<label for="grape">Grape</label> | |
<input type="checkbox" id="grape" value="grape"> | |
</form> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment