Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
YOGINIMAHIMA1 authored Jan 2, 2024
1 parent aae0b6c commit bb35c38
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion TASK2(TODOLIST APP/index.html
Original file line number Diff line number Diff line change
@@ -1 +1,23 @@

<!DOCTYPE html>
<html lang="en">
<head>
<title>Simple To Do List</title>
<!--Google Font-->
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap" rel="stylesheet">
<!--Font Awesome CDN-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css">
<!--Stylesheet-->
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div id="newtask">
<input type="text" placeholder="Task to be done..">
<button id="push">Add</button>
</div>
<div id="tasks"></div>
</div>
<!--Script-->
<script src="script.js"></script>
</body>
</html>

1 comment on commit bb35c38

@YOGINIMAHIMA1
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

DOM TREE

Please sign in to comment.