Skip to content

Commit

Permalink
Merge pull request #5 from Uzair-Manzoor/interactive-list
Browse files Browse the repository at this point in the history
refreshing JavaScript best practices
  • Loading branch information
Uzair-Manzoor authored Jul 25, 2023
2 parents 258e5b0 + 1453123 commit 1141bfc
Show file tree
Hide file tree
Showing 6 changed files with 71 additions and 47 deletions.
18 changes: 9 additions & 9 deletions dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,21 @@
<link rel="stylesheet" href="index.css">
<script defer src="main.bundle.js"></script></head>
<body>
<main class="container">
<header class="title-section">
<h4>Today's To Do</h4><i class="fa-solid fa-arrows-rotate" aria-label="Rotate icon"></i>
<main class="todo-app-container">
<header class="todo-app-title">
<h4>Today's To-Do List</h4><i class="rotate-icon fas fa-sync"></i>
</header>
<section class="form-field-section">
<form action="submit" class="input-field">
<input type="text" id="input-task" class="input-task" autocomplete="off" required>
<section class="todo-app-form">
<form action="submit" class="task-input-form">
<input type="text" id="input-task" class="task-input" autocomplete="off" required>
<label for="input-task">Add your task here...</label>
<input type="button" id="addBtn" value="+">
</form>
</section>
<section class="list-container-section">
<ul class="todo-list" id="todoList">
<section class="todo-app-list-container">
<ul class="task-list" id="todoList">
</ul>
<input type="button" class="clear-completed" value="Clear all completed">
<input type="button" class="clear-completed-tasks" value="Clear all completed">
</section>
</main>
</body>
Expand Down
Loading

0 comments on commit 1141bfc

Please sign in to comment.