Created
June 22, 2017 07:08
-
-
Save evilnapsis/3aaab341bbe0c2294c9c0d16458136cc to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Powered by http://evilnapsis.com --> | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Bootstrap 3 - Form Vertical - Ex #2</title> | |
<link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.min.css"> | |
</head> | |
<body> | |
<div class="container"> | |
<div class="row"> | |
<div class="col-md-7"> | |
<!-- Codigo Bootstrap Va AQUI --> | |
<h1>Boostrap 3 - Form Vertical - Ex #2</h1> | |
<form> | |
<div class="form-group"> | |
<label for="name1">Nombre</label> | |
<input type="text" class="form-control" id="name1" name="name" placeholder="Nombre" required> | |
</div> | |
<div class="form-group"> | |
<label for="description1">Descripcion</label> | |
<textarea class="form-control" id="description1" rows="4" name="description" placeholder="Descripcion" required></textarea> | |
</div> | |
<div class="form-group"> | |
<label for="options1">Opciones</label> | |
<select name="options" id="options1" class="form-control"> | |
<option value="">Opcion Default</option> | |
<option value="1">Opcion 1</option> | |
<option value="2">Opcion 2</option> | |
<option value="3">Opcion 3</option> | |
</select> | |
</div> | |
<div class="checkbox"> | |
<label> | |
<input type="checkbox" name="acept" required> Acepto terminos y condiciones. | |
</label> | |
</div> | |
<div class="radio"> | |
<label class="radio-inline"> | |
<input type="radio" name="radio1" id="myradio1" value="option1"> 1 | |
</label> | |
<label class="radio-inline"> | |
<input type="radio" name="radio1" id="myradio2" value="option2"> 2 | |
</label> | |
</div> | |
<button type="submit" class="btn btn-default">Submit</button> | |
</form> | |
</div> | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment