Skip to content

Commit

Permalink
minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mukundaparajuli committed Jun 14, 2024
1 parent af296a5 commit ff815c2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>To Do List App</title>
<link rel="stylesheet" href="style.css">
</head>

<body>
<div class="container">
<div class="todoapp">
Expand All @@ -16,13 +18,11 @@ <h2>To Do List App <img src="images/icon.png" alt=""></h2>
<button onclick="addTask()">Add</button>
</div>
<ul id="list-container">
<!-- <li class="checked">Task 1</li>
<li>Task 2</li>
<li>Task 3</li> -->
</ul>
</div>
</div>
<script src="script.js"></script>

</body>

</html>
2 changes: 1 addition & 1 deletion style.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
* {
margin: 0;
padding: 0;
font-family: 'Courier New', Courier, monospace;
font-family: 'Roboto', 'Courier New', Courier, monospace;
box-sizing: border-box;
}

Expand Down

0 comments on commit ff815c2

Please sign in to comment.