-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtodo1.html
41 lines (27 loc) · 1.18 KB
/
todo1.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
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style1.css">
<link rel="icon" type="image/x-icon" href="images\favicon.png">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,200&display=swap" rel="stylesheet">
<script defer type="text/javascript" src="script1.js"></script>
<title>To Do App</title>
</head>
<body>
<div id="repeat">oops! this task is already present</div>
<div class="logo"><img src="images\logo.png" alt=""></div>
<form id ="form1" >
<input id="todo" type="text" placeholder="add your todo" maxlength="100"
pattern="[A-Za-z0-9]+.*" title="first letter should be alphabet or a digit.">
<input type="submit" value = "add">
</form>
<div class="board">
<ul id="todo_list">
</ul>
<div id = "card"></div>
</div>
</body>
</html>