Advertisement
RizkyAnugrah

Untitled

Oct 27th, 2019
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.66 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Belajar Input (Rizky Anugrah XI RPL 2)</title>
  5.     <style type="text/css">
  6.         form {
  7.             border: 3px outset indianred;
  8.             width: 256px;
  9.             font-family: arial;
  10.             color: black;
  11.             text-align: center;
  12.             margin: auto;
  13.             background-color: blanchedalmond;
  14.         }
  15.     </style>
  16. </head>
  17. <body>
  18.     <form id="biodata" name="biodata" method="get" action="prosesGet.php" >
  19.         <p>Nama     :<br> <input type="text" name="nama" id="nama" size="20"></p>
  20.         <p>Alamat   :<br>
  21.             <textarea name="alamat" cols="30" rows="3" id="alamat"></textarea></p>
  22.         <p><input type="submit" name="button" id="button" value="Kirim"></p>
  23.     </form>
  24. </body>
  25. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement