Created
April 20, 2019 17:59
-
-
Save hugolcouto/e1019dd22c348d6cf25eaae5f6a987fd to your computer and use it in GitHub Desktop.
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
<div class="wrapper"> | |
<form class="form"> | |
<input type="text" class="form__input"> | |
<select name="" id="" class="form__input-select"> | |
<option name="" id="">Teste</option> | |
<option name="" id="">Teste</option> | |
</select> | |
<div class="form__radio"> | |
<input type="radio" name="teste" id="teste" value="teste" checked> | |
<label for="teste" class='checked'></label> | |
<span>Masculino</span> | |
</div> | |
<div class="form__radio"> | |
<input type="radio" name="teste" id="teste2" value="teste"> | |
<label for="teste2"></label> | |
</div> | |
<textarea name="" id="" class="form__input-textarea"></textarea> | |
<input type="submit" value="Teste" class="form__submit"> | |
</form> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment