86 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			HTML
		
	
	
			
		
		
	
	
			86 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			HTML
		
	
	
| <!DOCTYPE html>
 | |
| <html lang="de">
 | |
| 
 | |
| <head>
 | |
|   <meta charset="UTF-8">
 | |
|   <meta name="viewport" content="width=device-width, initial-scale=1.0">
 | |
|   <meta name="description" content="Die HTML Struktur in Webseiten">
 | |
|   <title>HTML Struktur</title>
 | |
|   <link rel="stylesheet" href="../css/reset.css">
 | |
|   <link rel="stylesheet" href="../css/style.css">
 | |
|   <link rel="stylesheet" href="../css/form.css">
 | |
| 
 | |
| </head>
 | |
| 
 | |
| <body>
 | |
|   <header>
 | |
|     <div class="wrapper">
 | |
|       <a href="../index.html"><img src="../img/logo.svg" alt="Mein logo" title="Der Titel meines Bildes"></a>
 | |
|       <nav role="navigation">
 | |
|         <ul>
 | |
|           <li><a href="semantik.html">Semantik</a></li>
 | |
|           <li><a href="header.html">Head</a></li>
 | |
|           <li><a href="struktur.html">Struktur</a></li>
 | |
|           <li><a href="navigation.html">Navigation</a></li>
 | |
|           <li><a href="formulare.html">Formular</a></li>
 | |
|         </ul>
 | |
|       </nav>
 | |
|     </div>
 | |
|   </header>
 | |
| 
 | |
|   <main role="main" class="wrapper">
 | |
|     <h1>Formulare in Webseiten</h1>
 | |
|     <form class="contact" method="POST" action="https://klubschule.ch/formmailer.pl">
 | |
|       <fieldset id="kontakt">
 | |
|         <legend>Persönliche Daten</legend>
 | |
|         <label for="vorname">Vorname: *</label>
 | |
|         <input type="text" id="vorname" name="vorname" placeholder="Ihr Vorname" required 
 | |
|         autofocus tabindex="1">
 | |
|         <label for="nachname">Nachname: *</label>
 | |
|         <input type="text" id="nachname" placeholder="Ihr Nachname" required tabindex="2">
 | |
|         <label for="str">Strasse: *</label>
 | |
|         <input type="text" id="str" name="str" placeholder="Strasee / Nr." required tabindex="3">
 | |
|         <label for="plz">Postzeitzahl: *</label>
 | |
|         <input type="text" id="plz" name="plz" placeholder="Postleitzahl" required tabindex="4">
 | |
|         <label for="ort">Ort: *</label>
 | |
|         <input type="text" id="ort" name="ort" placeholder="Ort" required tabindex="5">
 | |
|         <label for="email">E-Mail: </label>
 | |
|         <input type="email" name="email" id="email" placeholder="Email" tabindex="6">
 | |
|         <label for="tel"> Telefon: *</label>
 | |
|         <input type="tel" name="tel" id="tel" placeholder="Telefonnummer" required tabindex="7">
 | |
|       </fieldset>
 | |
|       <fieldset>
 | |
|         <legend>Pizza Bestellung</legend>
 | |
|         <label for="quanti">Pizza Grösse Wählen</label>
 | |
|         <select name="quanti" id="quanti" tabindex="8">
 | |
|           <option value="xl">Grosse Pizza</option>
 | |
|           <option value="m">Mittlere Pizza</option>
 | |
|           <option value="s">Kleine Pizza</option>
 | |
|         </select>
 | |
|         <label for="kaese">Extra Kaese</label>
 | |
|         <input type="checkbox" name="kaese" id="kaese" value="Kaese">
 | |
|         <label for="oliv">Extra Oliven</label>
 | |
|         <input type="checkbox" name="oliv" id="oliv" value="Oliven">
 | |
|         <label for="schinken">Extra Schinken</label>
 | |
|         <input type="checkbox" name="schinken" id="schinken" value="Schinken">
 | |
|       </fieldset>
 | |
|       <fieldset>
 | |
|         <legend>Zahlung</legend>
 | |
|         <label for="bar">Barzahlung</label>
 | |
|         <input type="radio" name="zahl" id="bar" value="Barzahlung" checked>
 | |
|         <label for="karte">Kartenzahlung</label>
 | |
|         <input type="radio" name="zahl" id="karte" value="Kartenzahlung">
 | |
|         <label for="twint">Twint</label>
 | |
|         <input type="radio" name="zahl" id="twint" value="Twint">
 | |
|       </fieldset>
 | |
|       <input type="submit" value="Ab die Post">
 | |
|     </form>
 | |
|   </main>
 | |
|   <footer>
 | |
|     <div class="wrapper">
 | |
|       <p><a title="Link zu Download" href="https://git.perin.work/andy/webdev">Download</a></p>
 | |
|     </div>
 | |
|   </footer>
 | |
| </body>
 | |
| 
 | |
| </html> |