Skip to content

Instantly share code, notes, and snippets.

@LuizFellype
Created March 11, 2018 16:53
Show Gist options
  • Save LuizFellype/f05d271a226324a0a09ee3ee90808eb5 to your computer and use it in GitHub Desktop.
Save LuizFellype/f05d271a226324a0a09ee3ee90808eb5 to your computer and use it in GitHub Desktop.
JS Bin // source https://jsbin.com/jepexer
<!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>
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