AleksandarH

Y2S2 - PHP Homework (P1)

Mar 6th, 2022 (edited)
1,414
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 2.10 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <title>Registration Form</title>
  6.         <style>
  7.             table, td {
  8.                 padding: 7px;
  9.                 border-collapse: collapse;
  10.                 border: 2px solid black;
  11.             }
  12.             h1 {
  13.                 margin: 0px;
  14.                 padding: 0px;
  15.             }
  16.         </style>
  17.     </head>
  18.     <body>
  19.         <form method="post" action="submit.php">
  20.             <table>
  21.                 <td>
  22.                     <h1>Registration Form</h1><br>
  23.                     <label for="Name">Name</label><br>
  24.                     <input type="text" placeholder="Input your name" id="Name" name="Personal_Information1"><br>
  25.                     <label for="Family">Family</label><br>
  26.                     <input type="text" id="Family" name="Personal_Information2"><br>
  27.                     <label for="E-mail">E-mail</label><br>
  28.                     <input type="text" id="E-mail" name="Personal_Information3"><br><br>
  29.                     Choose a course:<br>
  30.                     <input type="radio" id="PHP" name="Course" value="PHP">
  31.                     <label for="PHP">PHP</label><br>
  32.                     <input type="radio" id="Lisp" name="Course" value="Lisp">
  33.                     <label for="Lisp">Lisp</label><br>
  34.                     <input type="radio" id="Perl" name="Course" value="Perl">
  35.                     <label for="Perl">Perl</label><br>
  36.                     <input type="radio" id="Unix" name="Course" value="Unix">
  37.                     <label for="Unix">Unix</label><br><br>
  38.                     Additional information for you?<br>
  39.                     <textarea id="Additional_Information" name="Additonal Information" rows="6" cols="40"></textarea><br><br>
  40.                     <input type="checkbox" id="Confirmation" name="Confirmation">
  41.                     <label for="Confirmation">Confirm the receiving of the confirmation</label><br>
  42.                     <input type="submit">
  43.                     <input type="reset">
  44.                 </td>
  45.             </table>
  46.         </form>
  47.     </body>
  48. </html>
Add Comment
Please, Sign In to add comment