diff --git a/01-To-Do List App/index.html b/01-To-Do List App/index.html
index bcebceb..cd9f1d9 100644
--- a/01-To-Do List App/index.html
+++ b/01-To-Do List App/index.html
@@ -19,6 +19,9 @@
To-Do List App
/>
+
+
0
+
diff --git a/01-To-Do List App/script.js b/01-To-Do List App/script.js
index 628d7e8..4a489c0 100644
--- a/01-To-Do List App/script.js
+++ b/01-To-Do List App/script.js
@@ -10,7 +10,7 @@ function saveTodos() {
}
function updateCount() {
- count.textContent = todos.length;
+ count.textContent = `Task count: ${todos.length}`;
}
function renderTodos() {
diff --git a/01-To-Do List App/style.css b/01-To-Do List App/style.css
index eb77856..b20d27f 100644
--- a/01-To-Do List App/style.css
+++ b/01-To-Do List App/style.css
@@ -16,6 +16,10 @@ body {
h1.title {
margin-top: 20px;
}
+#count{
+ margin: 10px;
+ text-align: center;
+}
#todo_app {
margin-top: 15px;