-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (27 loc) · 941 Bytes
/
index.html
File metadata and controls
27 lines (27 loc) · 941 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="A Simple Tasks Manager With HTML, CSS & Pure JavaScript">
<meta name="author" content="Ahmad Jafari">
<title>Tasks Manager</title>
<link rel="icon" href="./images/favicon.ico">
<link rel="stylesheet" href="./css/styles.min.css"/>
</head>
<body>
<header>
<h1>Task Manager</h1>
<h3>DEVELOPED BY AHMAD JAFARI</h3>
<a target="_blank" href="https://github.com/jafari-dev/task-manager">Github</a>
</header>
<div id="container"></div>
<div id="dialog">
<p>Duplicate Task</p>
</div>
<script src="./js/utils.js"></script>
<script src="./js/ui.js"></script>
<script src="./js/tasks-manager.js"></script>
<script src="./js/index.js"></script>
</body>
</html>