-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (31 loc) · 780 Bytes
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>TO-DO Project</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h1>
TO-DO Project
</h1>
<div class="container">
<form>
<input type="text" id="title" placeholder="Tittle Here" required >
<textarea id="description" placeholder="Description Here" required></textarea>
<div class="btn">
<button type="submit"> Add</button>
</div>
</form>
<!-- <div class="task">
<div>
<p>Title Here</p>
<span>Description here</span>
</div>
<button class="deleteBtn">-</button>
</div> -->
</div>
<script src="script.js"></script>
</body>
</html>