Advertisement
Teodor92

03. SimpleWebForm

Oct 13th, 2012
891
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.76 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.     <head>
  4.         <meta charset="utf-8" />
  5.         <title>03. SimpleWebForm</title>
  6.         <meta name="description" content="" />
  7.         <meta name="author" content="Teodor" />
  8.         <meta name="viewport" content="width=device-width; initial-scale=1.0" />
  9.     </head>
  10.  
  11.     <body>
  12.         <div>
  13.             <form action="" method="post">
  14.                 <label for="name">Member name: </label>
  15.                 <input type="text" id="name" />
  16.                 <strong>*req</strong>
  17.                 <br />
  18.                 <label for="email">E-mail: </label>
  19.                 <input type="text" id="email" />
  20.                 <strong>*req</strong>
  21.                 <br />
  22.                 <label for="school">School: </label>
  23.                 <input type="text" id="school" />
  24.                 <strong>*req</strong>
  25.                 <br />
  26.                 <input type="submit" value="Submit" />
  27.             </form>
  28.         </div>
  29.     </body>
  30. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement