-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (70 loc) · 3.46 KB
/
index.html
File metadata and controls
74 lines (70 loc) · 3.46 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
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
<!DOCTYPE html>
<!-- Coding By SAI PRITAM PANDA
Connect with me here, in LinkedIn: https://www.linkedin.com/in/saipritampanda/
-->
<html lang="en">
<head>
<meta charset="utf-8">
<title>Task Master - The Best ToDo List Website</title>
<link rel="stylesheet" type="text/css" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="Image Assets/Fav Icons/favicon-index.png" type="image/png"> <!--Fav Icon-->
<link rel="stylesheet" href="https://unicons.iconscout.com/release/v4.0.0/css/line.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/flat-ui/2.3.0/css/flat-ui.min.css" rel="stylesheet" />
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-1785962158595876" crossorigin="anonymous"></script>
<script src="mastercodes.js"></script>
</head>
<body>
<div class="wrapper-container">
<div class="websiteName">
<h1>Task Master</h1>
</div>
<div class="websiteMiniDes">
<small>Your Online Pocket ToDo List</small>
<p id="version-top"><b>Version: 1.1.0</b></p>
</div>
<div class="wrapper">
<div class="task-input">
<img src="bars-icon.svg" alt="icon">
<input type="text" placeholder="Add a new task">
</div>
<div class="controls">
<div class="filters">
<span class="active" id="all">All</span>
<span id="pending">Pending</span>
<span id="completed">Completed</span>
</div>
<button class="clear-btn">Clear All</button>
</div>
<ul class="task-box"></ul>
</div>
</div>
<footer class="footer">
<div class="creator">
<b>Creator: SAI PRITAM PANDA | Social Connections</b>
</div>
<div class="footersome">
<a target="_blank" href="https://www.linkedin.com/in/saipritampanda/" title="SAI PRITAM PANDA on LinkedIn">
<img src="Image Assets/Social Media Assets/linkedin_professional.png" alt="SAI PRITAM PANDA on LinkedIn" />
</a>
<a target="_blank" href="https://github.com/saipritampanda/saipritampanda" title="SAI PRITAM PANDA on Github">
<img src="Image Assets/Social Media Assets/github_professional.png" alt="SAI PRITAM PANDA on Github" />
</a>
<a target="_blank" href="https://www.instagram.com/saipritampanda/" title="SAI PRITAM PANDA on Instagram">
<img src="Image Assets/Social Media Assets/instagram_professional.png" alt="SAI PRITAM PANDA on Instagram" />
</a>
<a target="_blank" href="https://x.com/SaiPritamPanda1" title="SAI PRITAM PANDA on Twitter/X">
<img src="Image Assets/Social Media Assets/x_professional.png" alt="SAI PRITAM PANDA on Twitter/X" class="twitter" />
</a>
<a target="_blank" href="https://www.hackerrank.com/profile/saipritampanda21" title="SAI PRITAM PANDA on HackerRank">
<img src="Image Assets/Social Media Assets/hackerrank_professional.png" alt="SAI PRITAM PANDA on HackerRank" class="hackerrank" />
</a>
</div>
<div class="footer-bottom">
<p>© 2024 - <span id="current-year"></span> Task Master. All rights reserved. | <a href="Privacy Policy.html" target="_blank">Privacy Policy</a></p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>