-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (66 loc) · 2.2 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Awesome To-Do List HTML,CSS & JavaScript</title>
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<link rel="stylesheet" href="./css/index.css">
</head>
<body>
<header class="navbar">
<h1 class="logo">
<a href="index.html">
<img src="../images/logo.png" alt="" srcset="" width="150">
</a>
</h1>
<nav>
<ul>
<li> <a href="./index.html">Home</a></li>
<li> <a href="./html/about.html">About Us</a> </li>
</ul>
</nav>
</header>
<div class="container">
<div class="addTask">
<input type="text" placeholder="Add a Task">
<button>Add</button>
</div>
<ol class="notCompleted">
<h3>Not Finished</h3>
<!-- <div class="notCompletedTask">
<input type="text" placeholder="Add a Task" readonly>
<button><i class="fa fa-trash"></i></button>
<button><i class="fa fa-check"></i></button>
</div> -->
</ol>
<ol class="Completed">
<h3>Finished</h3>
<!-- <div class="CompletedTask">
<input type="text" placeholder="Add a Task" readonly>
<button><i class="fa fa-trash"></i></button>
</div> -->
</ol>
</div>
<footer>
<div class="footer-content">
<a href="index.html">
<img src="../images/logo.png" alt="" srcset="" width="115">
</a>
<p>The daily task list has been improved. It can simplify things for production or completion of tasks.</p>
<ul class="social">
<li><a class="fa fa-facebook" href="facebook.com"></a></li>
<li> <a class="fa fa-whatsapp" href="whatsapp.com"></a></li>
<li><a class="fa fa-youtube" href="youtube.com"></a></li>
<li><a class="fa fa-linkedin" href="linkedin.com"></a></li>
<li><a class="fa fa-twitter" href="twitter.com"></a></li>
</ul>
</div>
<div class="footer-bottom">
<i class="fa fa-copyright">Copyright 1999-2022 by Refines Data. All Rights Reserved.
<i>TodoList.com</i> is Powered by <b>Yasein's Company</b>.
</i>
</div>
</footer>
<script src="../js/app.js"></script>
</body>
</html>