├── README.md ├── index.html ├── index.js ├── js.html └── style.css /README.md: -------------------------------------------------------------------------------- 1 | # Html- -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | rags 6 | 7 | 8 | 9 | 10 | 11 |

ex css

12 |

sangi mangi adangoo

13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | //document.write("welcome") 2 | function addtask(){ 3 | var element = document.getElementById('task container') 4 | console.log(element) 5 | var newElement= document.createElement('div') 6 | newElement.setAttribute('id','ind-task') 7 | newElement.innerHTML="

task1

" 8 | element.append(newElement) 9 | } 10 | function Deletetask(event){ 11 | console.log.event 12 | } -------------------------------------------------------------------------------- /js.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | charset="UTF-8"> 5 | 6 | Document 7 | 8 | 9 |
10 |

TO DO LIST

11 |
12 |
13 | 14 | 15 | 16 | 17 |
18 |
19 |
20 |

task1

21 | 22 |
23 | 24 | 25 |
26 | 27 | -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | body{ 2 | background-image: url("./images/DSC06505.JPG" ); 3 | background-size: 50%; 4 | background-repeat: no-repeat; 5 | } 6 | .AIML{ 7 | color: greenyellow; 8 | font-size: 50px; 9 | } 10 | #mohan{ 11 | color: brown; 12 | font-style: oblique; 13 | font-size: 30px; 14 | font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; 15 | } --------------------------------------------------------------------------------