Guest User

Untitled

a guest
Jul 18th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Page Title</title>
  5. </head>
  6. <body>
  7. <div class="container">
  8. <form action="action_page.php">
  9.  
  10. <label for="fname">First Name</label>
  11. <input type="text" id="fname" name="firstname" placeholder="Your name..">
  12.  
  13. <label for="lname">Last Name</label>
  14. <input type="text" id="lname" name="lastname" placeholder="Your last name..">
  15.  
  16. <label for="country">Country</label>
  17. <select id="country" name="country">
  18. <option value="australia">Australia</option>
  19. <option value="canada">Canada</option>
  20. <option value="usa">USA</option>
  21. </select>
  22.  
  23. <label for="subject">Subject</label>
  24. <textarea id="subject" name="subject" placeholder="Write something.." style="height:200px"></textarea>
  25.  
  26. <input type="submit" value="Submit">
  27.  
  28. </form>
  29. </div>
  30. <hr>
  31. </body>
  32. </html>
Add Comment
Please, Sign In to add comment