"Kontakt-Formular"
Bootstrap 3.1.0 Snippet by huckeduck

<link href="//netdna.bootstrapcdn.com/bootstrap/3.1.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.0/js/bootstrap.min.js"></script> <script src="//code.jquery.com/jquery-1.11.1.min.js"></script> <!------ Include the above in your HEAD tag ----------> <div class="container"> <div class="row"> <form class="form-horizontal" role="form"> <fieldset> <!-- Form Name --> <legend>Ihre Nachricht an mich</legend> <!-- Text input--> <div class="form-group"> <label class="col-lg-2 control-label" for="textinput">Vorname Name</label> <div class="col-lg-10"> <input id="textinput" name="textinput" placeholder="Vor- und Nachname" class="form-control" type="text" required="required"> <p class="help-block">bitte ihren Vor- und Nachnamen</p> </div> </div> <div class="form-group"> <label for="textinput" class="col-lg-2 control-label">Email</label> <div class="col-lg-10"> <input type="email" class="form-control" id="inputEmail1" placeholder="Email" required="required"> <p class="help-block">bitte ihre eMail Adresse</p> </div> </div> <div class="form-group"> <label for="inputDescription" class="col-lg-2 control-label">Nachricht</label> <div class="col-lg-10"> <textarea required="required" placeholder="ihre Nachricht" class="form-control" rows="3" id="description"></textarea> </div> </div> <div class="form-group"> <div class="col-lg-offset-2 col-lg-10"> <button type="submit" class="btn btn-success bordered"><span class="glyphicon glyphicon-envelope"></span> senden</button> <button type="reset" class="btn btn-danger bordered"><span class="glyphicon glyphicon-trash"></span> löschen</button> </div> </div> </fieldset> </form> </div> </div>

Related: See More


Questions / Comments: