Skip to content

Instantly share code, notes, and snippets.

@aacassandra
Last active May 18, 2020 03:13
Show Gist options
  • Save aacassandra/f43e3e9de57655c497ee78b49ce2414f to your computer and use it in GitHub Desktop.
Save aacassandra/f43e3e9de57655c497ee78b49ce2414f to your computer and use it in GitHub Desktop.
Belajar HTML: Membuat Kotak Teks Multi-Baris (21/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">
<br><br>
<label for="address">Address:</label>
<textarea name="address" id="address" rows="5" cols="30" placeholder="isikan alamatmu"></textarea>
</form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment