ubuntuusers.de

formular

Datum:
16. Juni 2014 09:48
Code:
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
<html>
<head>
 <title>Testseite</title>
</head>
<body>
<form action="input_radio.htm">
  Geben Sie Ihre Zahlungsweise an:<br><br>

    <input type="radio" name="Zahlmethode" value="Mastercard"> Mastercard<br>
    <input type="radio" name="Zahlmethode" value="Visa"> Visa<br>
    <input type="radio" name="Zahlmethode" value="AmericanExpress"> American Express<br><br>

    <input type="submit" value=" Absenden "><br><br>
    <input type="reset" value=" Abbrechen">
</form>
</body>