-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtodo.html
More file actions
43 lines (34 loc) · 1.14 KB
/
todo.html
File metadata and controls
43 lines (34 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!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</title>
<link rel="stylesheet" href="style2.css">
</head>
<body>
<header class="header">
<img src="BODHI.png" alt="" height="60px" style="border-radius: 50%;">
<nav class="navbar">
<ul class="nav-links">
<li><a href="home.html">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<h1 id="head">TO DO LIST</h1>
<div>
<form id="todo-form">
<input type="text" id="new-task" placeholder="Enter a task">
<button id="add-task">Add Task</button>
</form>
<ul class="container">
</ul>
</div>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="jquery.js"></script>
</body>
</html>