Advertisement
Guest User

Untitled

a guest
Feb 28th, 2020
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.09 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Bookings</title>
  5. <style>
  6. body{
  7. background-color: linen;
  8. font-family: Arial;
  9. font-size: 12px;
  10. }
  11. .logo{
  12. color: darkgreen;
  13. font-size: 30px;
  14. display:inline-block;
  15. }
  16. a:link{
  17. text-decoration: none;
  18.  
  19. }
  20.  
  21. </style>
  22. </head>
  23. <body>
  24. <p class="logo">Joe's Pizzeria</p>
  25. <p>
  26. <a href="">Home</a>
  27. <a href="">About </a>
  28. <a href="">News</a>
  29. <a href="">Menu</a>
  30. <a href="">Locations</a>
  31. </p>
  32. <div>
  33. <h1>Request a Booking</h1>
  34. <p>
  35. Please use the form below to submit a booking request. You
  36. will then be contacted by a staff member who will confirm
  37. your booking.
  38. </p>
  39. <form>
  40. <div class="field">
  41. <label for="name">Name:</label>
  42. <input type="text" name="name" id="name">
  43. </div>
  44. <div class="field">
  45. <label for="phone">Phone:</label>
  46. <input type="text" name="phone" id="phone">
  47. </div>
  48. <div class="field">
  49. <label for="email">Email:</label>
  50. <input type="text" name="email" id="email">
  51. </div>
  52. <div class="field">
  53. <label for="restaurant">Restaurant:</label>
  54. <select id="restaurant" name="restaurant">
  55. <option>310 West 38th Street, NY</option>
  56. <option>2450 Broadway, NY</option>
  57. <option>200 West 44th Street, NY</option>
  58. </select>
  59. </div>
  60. <div class="field">
  61. <label for="bookingTime">Booking Time:</label>
  62. <input type="text" name="bookingTime" id="bookingTime">
  63. </div>
  64. <div class="field">
  65. <label for="guests">Number of Guests:</label>
  66. <input type="text" name="guests" id=" guests">
  67. </div>
  68. <div class="field">
  69. <label for="marketing">Please tick this box if you would likevto receive special offers from Joe’s Pizza Co.</label>
  70. <input type="checkbox" name=marketing" id="marketing" value="1">
  71. </div>
  72. <div class="field">
  73. <label for="message">Special Requests:</label>
  74. <textarea name="message" id="message" cols="50" rows="10">
  75. </textarea>
  76. </div>
  77. <div class="field">
  78. <button type="submit">Request Booking</button>
  79. </div>
  80. </form>
  81. </div>
  82. </body>
  83. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement