Skip to content

Commit cdbbd51

Browse files
authored
Update index.php
1 parent c4701b5 commit cdbbd51

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

index.php

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,19 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8">
5-
<title>Simple To-Do List</title>
6-
<link rel="stylesheet" href="styles.css">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>To-Do List</title>
7+
<link rel="stylesheet" href="style.css">
78
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
8-
<script src="scripts.js"></script>
9+
<script src="script.js"></script>
910
</head>
1011
<body>
1112
<div class="container">
1213
<h1>To-Do List</h1>
13-
<div class="task-form">
14+
<form id="task-form">
1415
<input type="text" id="task" placeholder="New task">
15-
<button id="addTask">Add Task</button>
16-
</div>
16+
<button type="submit">Add Task</button>
17+
</form>
1718
<ul id="task-list">
1819
<!-- Tasks will be loaded here by AJAX -->
1920
</ul>

0 commit comments

Comments
 (0)