Skip to content

Commit 30c4fc5

Browse files
Merge pull request #650 from ElamathiiSelvan/patch-2
index.html
2 parents 30e0bfd + e2fc924 commit 30c4fc5

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

Trello Board Clone/index.html

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
1-
<html>
1+
<!DOCTYPE html>
2+
<html lang="en">
23

34
<head>
5+
<meta charset="UTF-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
47
<link rel="stylesheet" href="style.css">
5-
</link>
8+
<title>Todo List</title> <!-- Added title for better SEO and page identification -->
69
</head>
710

8-
911
<body>
10-
1112
<div id="addTodoListDiv">
12-
<input id="addTodoListInput" class="comment">
13-
<button id="addTodoListButton" class="btn-save">Add new list</button>
13+
<input id="addTodoListInput" class="comment" placeholder="Add a new task..."> <!-- Added placeholder for user guidance -->
14+
<button id="addTodoListButton" class="btn-save">Add New List</button> <!-- Capitalized button text for consistency -->
1415
</div>
1516

1617
<div id="root"></div>
1718

19+
<script src="script.js"></script> <!-- Moved to the end of the body for better loading performance -->
1820
</body>
1921

20-
<script src="script.js"></script>
21-
22-
</html>
22+
</html>

0 commit comments

Comments
 (0)