Created
          July 30, 2019 09:54 
        
      - 
      
 - 
        
Save PrimeTimeTran/67d9aed74d811eac2cb6826b3e7c9e44 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
    
  
  
    
  | <!doctype html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Todo List</title> | |
| <meta name="description" content="Todo List"> | |
| <meta name="author" content="SitePoint"> | |
| <link rel="stylesheet" href="styles.css"> | |
| </head> | |
| <body> | |
| <h1>Todo List</h1> | |
| <input id="todoInput" /> | |
| <button onclick="addTodo()"> | |
| Add Todo | |
| </button> | |
| <button onclick="filterForAllTodos()"> | |
| All Todos | |
| </button> | |
| <button onclick="filterForNotDoneTodos()"> | |
| Not Done Todos | |
| </button> | |
| <button onclick="filterForDoneTodos()"> | |
| Done Todos | |
| </button> | |
| <ul id="todoList"> | |
| </ul> | |
| <script src="scripts.js"></script> | |
| </body> | |
| </html> | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment