Skip to content

Instantly share code, notes, and snippets.

@aacassandra
Created May 16, 2020 18:24
Show Gist options
  • Save aacassandra/272ca7dcaaa1d1b1d79c82102ab5bbc4 to your computer and use it in GitHub Desktop.
Save aacassandra/272ca7dcaaa1d1b1d79c82102ab5bbc4 to your computer and use it in GitHub Desktop.
Belajar HTML: Membuat Label (20/33)
<!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