Skip to content

Instantly share code, notes, and snippets.

@hugolcouto
Created April 20, 2019 17:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hugolcouto/e1019dd22c348d6cf25eaae5f6a987fd to your computer and use it in GitHub Desktop.
Save hugolcouto/e1019dd22c348d6cf25eaae5f6a987fd to your computer and use it in GitHub Desktop.
<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