Created
January 8, 2022 13:02
-
-
Save hypeJunction/558fbe631a09d15c5e36f789229fb3d5 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 id="list-id">To-Do List</div> | |
<ul aria-labelledby="list-id"> | |
<li aria-labelledby="item-1"> | |
<label> | |
<input type="checkbox" /> | |
<span id="item-1">Do Laundry</span> | |
</label> | |
</li> | |
<li aria-labelledby="item-2"> | |
<label> | |
<input type="checkbox" checked /> | |
<span id="item-2">Buy Coffee</span> | |
</label> | |
</li> | |
</ul> | |
<form aria-label="Add To-Do Item"> | |
<input aria-label="To-Do Item" /> | |
<button type="submit">Add</button> | |
</form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment