├── needs.txt ├── extension list.txt ├── useful Links.txt ├── gitData.txt └── Jan-1-2022 └── index.html /needs.txt: -------------------------------------------------------------------------------- 1 | computer 2 | internet 3 | vscode 4 | 5 | 6 | google calender 7 | google meet 8 | 9 | github -------------------------------------------------------------------------------- /extension list.txt: -------------------------------------------------------------------------------- 1 | Auto Rename Tag 2 | HTML End Tag Labels 3 | Live Server 4 | Live Sass Compiler 5 | vscode-icons 6 | -------------------------------------------------------------------------------- /useful Links.txt: -------------------------------------------------------------------------------- 1 | install vscode: https://www.youtube.com/watch?v=bN6DE-4uFNo 2 | 3 | tutorial: https://www.w3schools.com/ -------------------------------------------------------------------------------- /gitData.txt: -------------------------------------------------------------------------------- 1 | echo "# b76a" >> README.md 2 | git init 3 | git add README.md 4 | git commit -m "first commit" 5 | git branch -M main 6 | git remote add origin https://github.com/asifdaffodil/b76a.git 7 | git push -u origin main -------------------------------------------------------------------------------- /Jan-1-2022/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Welcome 8 | 9 | 10 | This is a text from body 11 | 12 | --------------------------------------------------------------------------------