Created
March 11, 2018 16:34
-
-
Save LuizFellype/130f10bf34d41b9482b6ccd3c72d848a 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: -10px; | |
| } | |
| input { | |
| border-radius: 5px; | |
| font-size: 15px; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <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@gmail.com"> | |
| </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: -10px; | |
| } | |
| input { | |
| border-radius: 5px; | |
| font-size: 15px; | |
| } | |
| </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: -10px; | |
| } | |
| input { | |
| border-radius: 5px; | |
| font-size: 15px; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment