Advertisement
Guest User

Untitled

a guest
Jul 13th, 2015
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.63 KB | None | 0 0
  1. <html>
  2.     <head>
  3.         <link rel="stylesheet" href="style.css" type="text/css" />
  4.         <title>Spielbericht Eingabe</title>
  5.         <link href="test.ico" type="image/x-icon" rel="shortcut icon"/>
  6.     </head>
  7.     <body>
  8.         <form id="loginform" action="formular_auswertung.php" method="post">
  9.             <input type="dropdown" name="Mannschaft" class="input" list= "Mannschaft" required="required" placeholder="Mannschaft"/>
  10.                 <datalist class="input" id = "Mannschaft">
  11.                     <option class="input" value = "1. Herrenmannschaft">
  12.                     <option value = "2. Herrenmannschaft">
  13.                     <option value = "3. Herrenmannschaft">
  14.                     <option value = "4. Herrenmannschaft">
  15.                     <option value = "5. Herrenmannschaft">
  16.                     <option value = "6. Herrenmannschaft">
  17.                     <option value = "7. Herrenmannschaft">
  18.                 </datalist>
  19.  
  20.  
  21.             <input type="text" class="input" name="Titel" id="Titel" required="required" placeholder="Titel" />
  22.  
  23.             <textarea class="input" name="Bericht" id="Bericht" cols="50" rows="4" required="required" placeholder="Bericht" ></textarea>
  24.  
  25.             <input type="submit" class="button" value="Abschicken">
  26.         </form>
  27.  
  28.         <p>Geben Sie hier bitte die Mannschaft, den Titel und den Text f&uuml;r den Bericht ein.</p><br/>
  29.  
  30.         <p>Klicken Sie <a style="text-decoration:underline; color:yellow; font-weight:bold;" href="formatierung.html">hier</a> um die Formatierungen einzusehen.</p>
  31.  
  32.         <h6>(C) 2015 | Created and designed by ...</h6>
  33.  
  34.     </body>
  35. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement