Skip to content

Instantly share code, notes, and snippets.

@aacassandra
Created May 28, 2020 03:15
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/ac2a132e2516873d7b4559c63e97046f to your computer and use it in GitHub Desktop.
Save aacassandra/ac2a132e2516873d7b4559c63e97046f to your computer and use it in GitHub Desktop.
Belajar HTML: Membuat Kotak Centang / Checkbox (27/33)
<!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