Created
March 11, 2018 20:25
-
-
Save LuizFellype/63a1d7c1a1ce3506ec5e144d9587178a 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"> | |
<title>JS Bin</title> | |
<style id="jsbin-css"> | |
p { | |
font-size: 13px; | |
} | |
.contato { | |
margin-top: -15px; | |
} | |
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> | |
<form action=""> | |
<button type="submit">Submit</button> | |
</form> | |
</div> | |
</div> | |
<script id="jsbin-source-css" type="text/css">p { | |
font-size: 13px; | |
} | |
.contato { | |
margin-top: -15px; | |
} | |
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
p { | |
font-size: 13px; | |
} | |
.contato { | |
margin-top: -15px; | |
} | |
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