Created
October 12, 2019 04:34
-
-
Save takahirohonda/31efa97d2cedcac744476edb7ef67368 to your computer and use it in GitHub Desktop.
accessibility-form-tips-4-checkbox.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
<fieldset class="input-field" tabindex=0> | |
<legend class="checkbox-title"> | |
Subscribe to our news letter | |
</legend> | |
<div class="checkbox-group"> | |
<input type="checkbox" class="checkbox-input" | |
id="subscribe" name="subscribe" tabindex=0/> | |
<label class="radio-label" for="subscribe"> | |
Subscribe | |
</label> | |
</div> | |
</fieldset> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment