This repository was archived by the owner on Jan 29, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +43
-0
lines changed
Expand file tree Collapse file tree 1 file changed +43
-0
lines changed Original file line number Diff line number Diff line change 1+ <!DOCTYPE html>
2+ < html lang ="en ">
3+ < head >
4+ < meta charset ="UTF-8 ">
5+ < meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
6+ < title > Comprehensive To-Do List Manager</ title >
7+ < script src ="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/3.7.0/chart.min.js "> </ script >
8+ < style src ="style.css "> </ style >
9+ </ head >
10+ < body >
11+ < div class ="container ">
12+ < h1 id ="greeting "> </ h1 >
13+ < div id ="tabSelector ">
14+ < button onclick ="switchTab('personal') "> Personal</ button >
15+ < button onclick ="switchTab('school') "> School</ button >
16+ </ div >
17+ < h2 > Add Task</ h2 >
18+ < input type ="text " id ="taskInput " placeholder ="Enter task ">
19+ < select id ="subjectSelect "> </ select >
20+ < select id ="prioritySelect ">
21+ < option value ="low "> Low Priority</ option >
22+ < option value ="medium "> Medium Priority</ option >
23+ < option value ="high "> High Priority</ option >
24+ </ select >
25+ < input type ="date " id ="dueDateInput ">
26+ < button onclick ="addTask() "> Add Task</ button >
27+ < h2 > Add Subject</ h2 >
28+ < input type ="text " id ="subjectInput " placeholder ="Enter new subject ">
29+ < button onclick ="addSubject() "> Add Subject</ button >
30+ < h2 > Tasks</ h2 >
31+ < ul id ="taskList "> </ ul >
32+ < div class ="charts ">
33+ < div class ="chart-container ">
34+ < canvas id ="priorityChart "> </ canvas >
35+ </ div >
36+ < div class ="chart-container ">
37+ < canvas id ="subjectChart "> </ canvas >
38+ </ div >
39+ </ div >
40+ </ div >
41+ < script src ="functions.js "> </ script >
42+ </ body >
43+ </ html >
You can’t perform that action at this time.
0 commit comments