Guest User

Untitled

a guest
Feb 14th, 2016
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.79 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <!--Created by: Adam Smith, Feedback.html -->
  4. <!--Last Modified: 1/17/2016 -->
  5. <head>
  6. <meta charset="utf-8" />
  7. <meta name="keywords" content="Skeleton, lesson, homework, Adam Smith" />
  8. <meta name="description" content="first attempt at html" />
  9. <link href="styles.css" type="text/css" rel="stylesheet" />
  10.  
  11. <title>Feedback</title>
  12. </head>
  13. <body>
  14. <header>
  15. <img class="logo" src="images/logo.jpg" alt="Logo" />
  16. <nav class="topMenu">
  17. <a href="home.html">Home</a>|
  18. <a href="birdlist.html">Bird List</a>|
  19. <a href="birdfood.html">Bird Food</a>|
  20. <a href="birdhouses.html">Bird Houses</a>|
  21. <a href="birdsupplies.html">Bird Supplies</a>|
  22. <a href="birdsounds.html">Bird Sounds</a>|
  23. <a href="birdvideos.html">Bird Videos</a>|
  24. <a href="birdcanvas.html">Bird Canvas</a>|
  25. <a href="birdgroups.html">Bird Groups</a>|
  26. <a href="birdorder.html">Bird Order Form</a>|
  27. <a href="birdflying.html">Bird Flying</a>|
  28. <a href="birdgame.html">Bird Game</a>|
  29. <a href="Feedback.html">Feedback</a>|
  30. <a href="Cookies.html">Privacy</a>|
  31. <a href="birdmatching.html">Bird Matching Game</a>|
  32. </nav>
  33. </header>
  34.  
  35. <form>
  36. <p><label>First Name:<input type="text" id="firstName" /> </label></p>
  37. <p><label>Last Name:<input type="text" id="lastName" /> </label></p>
  38. <p><label>Street Address: <input type="text" id="streetAdd"/></label></p>
  39. <p><label>City:<input type="text" id="city" /></label></p>
  40. <p><label>State:<input type="text" id="state" /></label></p>
  41. <p><label>Zip:<input type="number" id="zip" /></label></p>
  42. <p><label>Email:<input type="email" id="email" /></label></p>
  43. <p><label>Phone Number:<input type="number" id="phoneNumber" /></label></p>
  44. <p><label>Username: <input type="text" id="username" /></label></p>
  45. <p><label>Password: <input type="password" id="password" /></label></p>
  46. <p><label>How did you hear about this site?
  47. <select multiple="multiple"size="1">
  48. <option value="friend" selected="selected">friend</option>
  49. <option value="family">family</option>
  50. <option value="club">club</option>
  51. <option value="other website">other website</option>
  52. <option value="other">other</option></select></label></p>
  53. <p><label>How many distinct species of birds have you seen? <input type="number" id="numOf" /></label></p>
  54. <p>Are you a member of the Audobon Society?</p>
  55. <label>yes</label><input type="radio" name="member" value="yes" label="yes" />
  56. <label>no</label><input type="radio" name="member" value="no" label="no"/><br />
  57. <input type="submit" id="submit" value="submit" />
  58. </form>
  59.  
  60.  
  61. </body>
  62. </html>
Add Comment
Please, Sign In to add comment