Created
March 11, 2018 16:53
-
-
Save LuizFellype/f05d271a226324a0a09ee3ee90808eb5 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 { | |
background: ; | |
border-bottom: solid; | |
} | |
</style> | |
</head> | |
<body> | |
<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">Masculino | |
<input type="radio">Feminino | |
</div> | |
<p>Seu Email</p> | |
<div class="contato"> | |
<input type="text" placeholder="[email protected]"> | |
</div> | |
<p>Numero</p> | |
<div class="contato"> | |
<input type="text" placeholder="(xx)xxxxx-xxxx"> | |
</div> | |
<button type="submit">Submit</button> | |
</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 { | |
background: ; | |
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 { | |
background: ; | |
border-bottom: solid; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment