Nicht mehr ganz neu hier
Hallo,
ich bin totaler Anfänger und verzweifle an der Ausrichtung des Formulars.
Ich möchte diese Vorlage nachbauen und bekomme die Ausrichtung nicht hin.
Kann mir vielleicht bitte jemand helfen?
MfG
ich bin totaler Anfänger und verzweifle an der Ausrichtung des Formulars.
Ich möchte diese Vorlage nachbauen und bekomme die Ausrichtung nicht hin.
Kann mir vielleicht bitte jemand helfen?
MfG
HTML:
<form id="kontakformular" action="http://www.formular-chef.de/fc.cgi" method="post">
<input type="hidden" name="empfaenger" value="michael-burwitzX§Xgmx.de">
<h1>Ihre Pizzagröße:</h1>
<div>
<input name="pizzagroesse" type="radio" value="klein">
<label for="klein">klein</label>
<label class="angaben">(20cm)</label>
<label class="angaben">5 Euro</label>
</div>
<div>
<input name="pizzagroesse" type="radio" value="mittel">
<label for="mittel">mittel</label>
<label class="angaben">(30cm)</label>
<label class="angaben">7 Euro</label>
</div>
<div>
<input name="pizzagroesse" type="radio" value="gross">
<label for="gross">groß</label>
<label class="angaben">(40cm)</label>
<label class="angaben">10 Euro</label>
</div>
<div>
<input name="pizzagroesse" type="radio" value="jumbo">
<label for="jumbo">jumbo</label>
<label class="angaben">(100cm)</label>
<label class="angaben">20 Euro</label>
</div>
<h1>Ihre Wunschsauce:</h1>
<div>
<input name="wunschsauce" type="radio" value="ketchup">
<label for="ketchup">Ketchup</label>
</div>
<div>
<input name="wunschsauce" type="radio" value="kraeuter">
<label for="kraeuter">Kräuter</label>
</div>
<div>
<input name="wunschsauce" type="radio" value="schokolade">
<label for="schokolade">Schokolade</label>
</div>
<div>
<input name="wunschsauce" type="radio" value="knoblauch">
<label for="knoblauch">Knoblauch</label>
</div>
<h1>Ihr Wunschbelag:</h1>
<div>
<label for="auswahl_1">Auswahl 1</label>
<select name="Auswahl">
<option value=""selected="selected">keine Auswahl</option>
<option value="nix">Nix</option>
<option value="salami">Salami</option>
<option value="kaviar">Kaviar</option>
<option value="hackfleisch">Hackfleisch</option>
<option value="thunfisch">Thunfisch</option>
<option value="hai">Hai</option>
<option value="blutwurst">Blutwurst</option>
</select>
</div>
<div>
<label for="auswahl_2">Auswahl 2</label>
<select name="Auswahl">
<option value=""selected="selected">keine Auswahl</option>
<option value="nix">Nix</option>
<option value="gruenkern">Grünkern</option>
<option value="spinat">Spinat</option>
<option value="salat">Salat</option>
</select>
</div>
<div>
<label for="auswahl_3">Auswahl 3</label>
<select name="Auswahl">
<option value=""selected="selected">keine Auswahl</option>
<option value="nix">Nix</option>
<option value="gold">Gold</option>
<option value="viel kaese">Viel Käse</option>
</select>
</div>
<h1>Ihr Wunschgetränk:</h1>
<div>
<label for="auswahl_getraenk">Bitte Auswählen</label>
<select name="Auswahl">
<option value=""selected="selected">keine Auswahl</option>
<option value="nix">Nix</option>
<option value="cola">Cola</option>
<option value="sekt">Sekt</option>
</select>
</div>
<h1>Ihre Lieferadresse:</h1>
<div class="adresse">
<label for="name">Ihr Name:</label>
<input type="text" id="name" placeholder="Vor- und Nachname" autocomplete="on" required>
</div>
<div class="adresse">
<label for="tel">Ihr Telefonnummer:</label>
<input type="tel" id="tel" placeholder="+49 (0) 123 / 45 67 89 10">
</div>
<div class="adresse">
<label for="name">Ihr Wohnort:</label>
<input type="text" id="name" placeholder="Wohnort?">
</div>
<div class="adresse">
<label for="email">Ihre E-Mailadresse:</label>
<input type="email" id="email" placeholder="max-mustermann@gmx.de">
</div>
<input type="submit">
<input type="reset" value="Abbrechen">
</form>
Code:
@charset "utf-8";
/* CSS Document */
.angaben {
margin-left:250px;
}
select {
margin-left: 300px;
}
input#name,
input#tel,
input#email {
width: 200px;
margin-left: 50px;
}
.adresse {
display: block;
}
.adresse>label {
display: block;
width: 120px;
float: left;
}
.adresse>input {
float: left;
margin-bottom: 10px;
width: 166px;
}
.adresse label:nth-child(n+1){
clear: both;
}