├── public
├── site preview.png
├── style.css
└── app.js
├── README.md
├── LICENSE
└── index.html
/public/site preview.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hazrat-Ali9/To-Do-List/HEAD/public/site preview.png
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # 🛫 Hazrat Ali
2 |
3 | # 🚁 Programmer || Software Engineering
4 |
5 |
6 | # Todo-list
7 | list your deily tasks
8 |
9 | [see live]()
10 |
11 |
12 |
13 | # author
14 | [Hazrat Ali]()
15 |
16 | [MIT LICENSE](LICENSE)
17 |
18 |
--------------------------------------------------------------------------------
/public/style.css:
--------------------------------------------------------------------------------
1 | @import url('https://fonts.googleapis.com/css2?family=Playwrite+ES:wght@100..400&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
2 | /* Style css */
3 | body ul,
4 | div,
5 | button,
6 | h1 {
7 | font-family: "Rubik", sans-serif;
8 | color: rgb(0, 0, 0);
9 | }
10 |
11 | .head {
12 | font-family: "Playwrite ES", cursive;
13 | }
14 |
15 | ul li {
16 | /* background-color: rgb(32, 133, 227); */
17 | margin: 10px 10px;
18 | border-radius: 10px;
19 | padding: 10px 10px;
20 | color: rgb(0, 0, 0);
21 | }
22 |
23 | li button {
24 | background: #d9534f;
25 | border: none;
26 | color: white;
27 | padding: 5px 10px;
28 | border-radius: 5px;
29 | cursor: pointer;
30 | margin-left: 8px;
31 | ;
32 | margin: 10px 10px;
33 | }
34 |
35 | li button:hover {
36 | background: #c9302c;
37 | }
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) Hazrat Ali
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |