Skip to content

Instantly share code, notes, and snippets.

@hypeJunction
Created January 8, 2022 13:02
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 hypeJunction/558fbe631a09d15c5e36f789229fb3d5 to your computer and use it in GitHub Desktop.
Save hypeJunction/558fbe631a09d15c5e36f789229fb3d5 to your computer and use it in GitHub Desktop.
<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