Advertisement
Guest User

Untitled

a guest
Feb 28th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.68 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>Kontaktformular </title>
  4. <style type="text/css">
  5. body,td { font-family: verdana; font-size: 12px; margin: 20px; padding: 0px; line-height: 110%; background-color: #F4F4F0;}
  6. .email { background: url(email.png) #ffffff no-repeat right 50% }
  7. .telefon { background: url(telefon.png) #ffffff no-repeat right 50% }
  8.  
  9. ul {
  10. list-style: none;
  11. }
  12.  
  13. label {
  14. display: inline-block;
  15. width: 150px;
  16. vertical-align: top;
  17. }
  18. .email { background: T:\Lehrer an Schüler\Formular\Kontaktfrm\email.png #ffffff no-repeat right 50% }
  19. .telefon { background: T:\Lehrer an Schüler\Formular\Kontaktfrm\telefon.png #ffffff no-repeat right 50% }
  20.  
  21. </style>
  22.  
  23. </head>
  24.  
  25. <body>
  26.  
  27. <form id="bestellung" action="#" method="post">
  28. <ul>
  29. <li>
  30. <label for="name">Vorname</label>
  31. <input type="text" name="name" id="name" placeholder="Vorname" required>
  32. </li>
  33.  
  34. <li>
  35. <label for="name">Name</label>
  36. <input type="text" name="name" id="name" placeholder="Nachname" required>
  37. </li>
  38.  
  39. <li>
  40. <label for="email">E-Mail</label>
  41. <input type="email" name="email" id="email" placeholder="beispiel@domain.de" required>
  42. </li>
  43.  
  44. <li>
  45. <label for="Betreff">Betreff</label>
  46. <input type="text" name="Betreff" id="Betreff" required>
  47. </li>
  48.  
  49. <li>
  50. <label for="Nachricht">Nachricht</label>
  51. <textarea id=Nachricht tabIndex=5 name=Feld_a rows=10 cols=28></TEXTAREA>
  52. </li>
  53.  
  54. <li>
  55. <label for="button"></label>
  56. <button type="submit" id="button">Senden</button>
  57.  
  58. </li>
  59. </ul>
  60. </form>
  61.  
  62. <hr>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement