├── .gitignore
├── index.html
├── readme.md
└── script.js
/.gitignore:
--------------------------------------------------------------------------------
1 | errors.txt
2 | /logs
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Git Course
7 |
13 |
14 |
15 | Hello Git
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/readme.md:
--------------------------------------------------------------------------------
1 | # Git and Github Course
2 |
3 | Crash course for Git
4 |
--------------------------------------------------------------------------------
/script.js:
--------------------------------------------------------------------------------
1 | document.body.innerHTML = 'Hello from JavaScript
'
2 | console.log('Test !!!!!!!!!!!!!!')
3 |
--------------------------------------------------------------------------------