Created
May 22, 2023 08:55
-
-
Save cladjidane/790d0ad7a48abf0a1daa7efdf69f672c to your computer and use it in GitHub Desktop.
This file contains 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
<h1>Todo List</h1> | |
<h2>Gestionnaire de tâches</h2> | |
<form> | |
<label for="item">Ajouter une tâche</label> | |
<div class="fields"> | |
<input type="text" id="item" placeholder="Intitulé de la tâche" /> | |
</div> | |
<button type="submit">Ajouter</button> | |
</form> | |
<ul class="list-todo"> | |
<li data-key="60" class="ok"> | |
<input type="checkbox" checked="checked" /><span>Première tâche</span | |
><button><img src="ressources/fermer.svg" /></button> | |
</li> | |
<li data-key="65" class="ok"> | |
<input type="checkbox" checked="checked" /><span>2ème tâche</span | |
><button><img src="ressources/fermer.svg" /></button> | |
</li> | |
<li data-key="66"> | |
<input type="checkbox" /><span>Saluer le boss</span | |
><button><img src="ressources/fermer.svg" /></button> | |
</li> | |
<li data-key="67"> | |
<input type="checkbox" /><span>Etc ...</span | |
><button><img src="ressources/fermer.svg" /></button> | |
</li> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment