HTML-Code in forms-starterkit/01_step/form_kitchensink_html5.html

<form action="" method="post">
    <div class="form_control">
        <label for="email">Ihre E-Mail Adresse</label>
        <!-- Stellt auf Touchscreens Tastatur mit @ zur Verfügung -->
        <input type="email" id="email" name="email">
    </div>
    <div class="form_control">
        <label for="telefon">Ihre Telefon Nummer</label>
         <!-- Stellt auf Touchscreens "Ziffernblock" zur Verfügung (leider nicht immer) -->
        <input type="tel" id="telefon" name="telefon">
    </div>
    <div class="form_control">
        <label for="homepage">Ihre Homepage</label>
        <!-- Stellt auf Touchscreens optimale Tastatur zur Verfügung -->
        <input type="url" id="homepage" name="homepage">
    </div>
    <div class="form_control">
        <label for="farbe">Farbe wählen</label>
        <!-- Der Colorpicker ist abhängig vom Betriebssystem und Browser -->
        <input type="color" id="farbe" name="farbe" value="#FFCC00">
    </div>
    <div class="form_control">
        <button type="submit" name="go" class="btn btn-blue">Verschicken</button>
    </div>
</form>