Created
March 11, 2018 22:40
-
-
Save LuizFellype/3b6bfc4db395716d9d684e319ccfad51 to your computer and use it in GitHub Desktop.
JS Bin // source https://jsbin.com/jepexer
This file contains hidden or 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css"/> | |
<style id="jsbin-css"> | |
.f { | |
margin: 10px; | |
margin-left: 1px; | |
} | |
p { | |
font-size: 13px; | |
} | |
.contato { | |
margin-top: 10px; | |
} | |
input { | |
border-radius: 5px; | |
font-size: 15px; | |
} | |
.c { | |
border-bottom: solid; | |
} | |
</style> | |
</head> | |
<body> | |
<div class="container-fluid"> | |
<nav class="container row c"> | |
<p>QUESTIONÁRIO</p> | |
</nav> | |
<div class="container-fluid"> | |
<p>Nome Completo</p> | |
<div class="contato"> | |
<input type="text"> </br> | |
<input type="radio" name="indoor-outdoor">Masculino | |
<input type="radio" name="indoor-outdoor">Feminino | |
</div> | |
<p>Data de Nascimento</p> | |
<div class="contato"> | |
<input type="text" placeholder="00/00/0000" required> | |
</div> | |
<p>Seu Email</p> | |
<div class="contato"> | |
<input type="text" placeholder="[email protected]" required> | |
</div> | |
<p>Numero</p> | |
<div class="contato"> | |
<input type="text" placeholder="(xx)xxxxx-xxxx" required> | |
</div> | |
<p>Nome do Pai</p> | |
<div class="contato"> | |
<input type="text" placeholder="" required> | |
Nome da mae | |
<input type="text" placeholder="" required> | |
<div class='f'> | |
<button class="btn btn-primary">Submit</button> | |
</div> | |
</div> | |
</div> | |
<script id="jsbin-source-css" type="text/css">.f { | |
margin: 10px; | |
margin-left: 1px; | |
} | |
p { | |
font-size: 13px; | |
} | |
.contato { | |
margin-top: 10px; | |
} | |
input { | |
border-radius: 5px; | |
font-size: 15px; | |
} | |
.c { | |
border-bottom: solid; | |
}</script> | |
</body> | |
</html> |
This file contains hidden or 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
.f { | |
margin: 10px; | |
margin-left: 1px; | |
} | |
p { | |
font-size: 13px; | |
} | |
.contato { | |
margin-top: 10px; | |
} | |
input { | |
border-radius: 5px; | |
font-size: 15px; | |
} | |
.c { | |
border-bottom: solid; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment