Created
May 16, 2020 18:24
-
-
Save aacassandra/272ca7dcaaa1d1b1d79c82102ab5bbc4 to your computer and use it in GitHub Desktop.
Belajar HTML: Membuat Label (20/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="email">Email:</label> | |
<input type="text" name="email" id="email" value="" placeholder="isikan email anda"> | |
<br><br> | |
<label for="email">Phone:</label> | |
<input type="text" name="phone" id="phone" value="" placeholder="isikan telepon anda"> | |
</form> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment