Created
June 14, 2020 07:03
-
-
Save aacassandra/cd38f4c7878a7d4a3539738363d8e94a to your computer and use it in GitHub Desktop.
Belajar HTML: Membuat Bidang Kotak atau Fieldbox (29/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=""> | |
<fieldset> | |
<legend>Form Profile</legend> | |
<label for="name">Your Name</label> | |
<input type="text" id="name"> | |
<br> | |
<br> | |
<label for="age">Your Age</label> | |
<input type="number" id="age"> | |
<br> | |
<br> | |
<label for="gender">Your Gender</label> | |
<select id="gender"> | |
<option value="man">Laki-laki</option> | |
<option value="woman">Perempuan</option> | |
</select> | |
</fieldset> | |
</form> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment