Skip to content

Instantly share code, notes, and snippets.

@vikbert
Last active August 8, 2020 13:52
Show Gist options
  • Save vikbert/02e4192ab019b8da9946ac030665af05 to your computer and use it in GitHub Desktop.
Save vikbert/02e4192ab019b8da9946ac030665af05 to your computer and use it in GitHub Desktop.
<section class="main">
<ul class="todo-list">
<li class="editing">
<div class="view">
<input type="checkbox" class="toggle">
<label>read a book</label>
<button class="destroy"></button>
</div>
<input class="edit" value="Read a book: in editing">
</li>
<li>
<div class="view">
<input type="checkbox" class="toggle" checked>
<label>another todo</label>
<button class="destroy"></button>
</div>
<input class="edit" value="another todo">
</li>
<li class="completed">
<div class="view">
<input type="checkbox" class="toggle" checked>
<label>todo completed</label>
<button class="destroy"></button>
</div>
<input class="edit" value="todo completed">
</li>
</ul>
</section>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment