├── 0. Template ├── index.html ├── script.js └── styles.css ├── 1. GoogleDriveApp ├── .vscode │ └── settings.json ├── index.html ├── script.js ├── styles.css └── test.html ├── 10. QuizApp ├── .vscode │ └── settings.json ├── app.js ├── index.html ├── script.js └── styles.css ├── 3. PasswordGenerator ├── index.html ├── script.js └── styles.css ├── 4. LyricsApp ├── .vscode │ └── settings.json ├── images │ └── mysic.jpg ├── index.html ├── script.js └── styles.css ├── 5. InternetConnectionDetector ├── .vscode │ └── settings.json ├── images │ ├── offline.png │ └── online.png ├── index.html ├── script.js ├── styles.css └── test.html ├── 6. Product Slider ├── images │ ├── 1.png │ ├── 10.png │ ├── 11.png │ ├── 12.png │ ├── 2.png │ ├── 250.jpg │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ ├── 9.png │ ├── arrow-left.png │ └── arrow-right.png ├── index.html ├── script.js └── styles.css ├── 7. Product Filter ├── .vscode │ └── settings.json ├── images │ ├── 1.png │ ├── 10.png │ ├── 11.png │ ├── 12.png │ ├── 13.png │ ├── 2.png │ ├── 250.jpg │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ └── 9.png ├── index.html ├── script.js └── styles.css ├── 8. NotesApp ├── .vscode │ └── settings.json ├── index.html ├── script.js └── styles.css ├── 9. ModalWithProgressBarAndCounter ├── .vscode │ └── settings.json ├── index.html ├── script.js └── styles.css └── README.md /0. Template/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/0. Template/index.html -------------------------------------------------------------------------------- /0. Template/script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /0. Template/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/0. Template/styles.css -------------------------------------------------------------------------------- /1. GoogleDriveApp/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5504 3 | } -------------------------------------------------------------------------------- /1. GoogleDriveApp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/1. GoogleDriveApp/index.html -------------------------------------------------------------------------------- /1. GoogleDriveApp/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/1. GoogleDriveApp/script.js -------------------------------------------------------------------------------- /1. GoogleDriveApp/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/1. GoogleDriveApp/styles.css -------------------------------------------------------------------------------- /1. GoogleDriveApp/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/1. GoogleDriveApp/test.html -------------------------------------------------------------------------------- /10. QuizApp/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5504 3 | } -------------------------------------------------------------------------------- /10. QuizApp/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/10. QuizApp/app.js -------------------------------------------------------------------------------- /10. QuizApp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/10. QuizApp/index.html -------------------------------------------------------------------------------- /10. QuizApp/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/10. QuizApp/script.js -------------------------------------------------------------------------------- /10. QuizApp/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/10. QuizApp/styles.css -------------------------------------------------------------------------------- /3. PasswordGenerator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/3. PasswordGenerator/index.html -------------------------------------------------------------------------------- /3. PasswordGenerator/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/3. PasswordGenerator/script.js -------------------------------------------------------------------------------- /3. PasswordGenerator/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/3. PasswordGenerator/styles.css -------------------------------------------------------------------------------- /4. LyricsApp/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5501 3 | } -------------------------------------------------------------------------------- /4. LyricsApp/images/mysic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/4. LyricsApp/images/mysic.jpg -------------------------------------------------------------------------------- /4. LyricsApp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/4. LyricsApp/index.html -------------------------------------------------------------------------------- /4. LyricsApp/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/4. LyricsApp/script.js -------------------------------------------------------------------------------- /4. LyricsApp/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/4. LyricsApp/styles.css -------------------------------------------------------------------------------- /5. InternetConnectionDetector/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5502 3 | } -------------------------------------------------------------------------------- /5. InternetConnectionDetector/images/offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/5. InternetConnectionDetector/images/offline.png -------------------------------------------------------------------------------- /5. InternetConnectionDetector/images/online.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/5. InternetConnectionDetector/images/online.png -------------------------------------------------------------------------------- /5. InternetConnectionDetector/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/5. InternetConnectionDetector/index.html -------------------------------------------------------------------------------- /5. InternetConnectionDetector/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/5. InternetConnectionDetector/script.js -------------------------------------------------------------------------------- /5. InternetConnectionDetector/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/5. InternetConnectionDetector/styles.css -------------------------------------------------------------------------------- /5. InternetConnectionDetector/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/5. InternetConnectionDetector/test.html -------------------------------------------------------------------------------- /6. Product Slider/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/6. Product Slider/images/1.png -------------------------------------------------------------------------------- /6. Product Slider/images/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/6. Product Slider/images/10.png -------------------------------------------------------------------------------- /6. Product Slider/images/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/6. Product Slider/images/11.png -------------------------------------------------------------------------------- /6. Product Slider/images/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/6. Product Slider/images/12.png -------------------------------------------------------------------------------- /6. Product Slider/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/6. Product Slider/images/2.png -------------------------------------------------------------------------------- /6. Product Slider/images/250.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/6. Product Slider/images/250.jpg -------------------------------------------------------------------------------- /6. Product Slider/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/6. Product Slider/images/3.png -------------------------------------------------------------------------------- /6. Product Slider/images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/6. Product Slider/images/4.png -------------------------------------------------------------------------------- /6. Product Slider/images/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/6. Product Slider/images/5.png -------------------------------------------------------------------------------- /6. Product Slider/images/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/6. Product Slider/images/6.png -------------------------------------------------------------------------------- /6. Product Slider/images/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/6. Product Slider/images/7.png -------------------------------------------------------------------------------- /6. Product Slider/images/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/6. Product Slider/images/8.png -------------------------------------------------------------------------------- /6. Product Slider/images/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/6. Product Slider/images/9.png -------------------------------------------------------------------------------- /6. Product Slider/images/arrow-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/6. Product Slider/images/arrow-left.png -------------------------------------------------------------------------------- /6. Product Slider/images/arrow-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/6. Product Slider/images/arrow-right.png -------------------------------------------------------------------------------- /6. Product Slider/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/6. Product Slider/index.html -------------------------------------------------------------------------------- /6. Product Slider/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/6. Product Slider/script.js -------------------------------------------------------------------------------- /6. Product Slider/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/6. Product Slider/styles.css -------------------------------------------------------------------------------- /7. Product Filter/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5502 3 | } -------------------------------------------------------------------------------- /7. Product Filter/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/7. Product Filter/images/1.png -------------------------------------------------------------------------------- /7. Product Filter/images/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/7. Product Filter/images/10.png -------------------------------------------------------------------------------- /7. Product Filter/images/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/7. Product Filter/images/11.png -------------------------------------------------------------------------------- /7. Product Filter/images/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/7. Product Filter/images/12.png -------------------------------------------------------------------------------- /7. Product Filter/images/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/7. Product Filter/images/13.png -------------------------------------------------------------------------------- /7. Product Filter/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/7. Product Filter/images/2.png -------------------------------------------------------------------------------- /7. Product Filter/images/250.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/7. Product Filter/images/250.jpg -------------------------------------------------------------------------------- /7. Product Filter/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/7. Product Filter/images/3.png -------------------------------------------------------------------------------- /7. Product Filter/images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/7. Product Filter/images/4.png -------------------------------------------------------------------------------- /7. Product Filter/images/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/7. Product Filter/images/5.png -------------------------------------------------------------------------------- /7. Product Filter/images/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/7. Product Filter/images/6.png -------------------------------------------------------------------------------- /7. Product Filter/images/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/7. Product Filter/images/7.png -------------------------------------------------------------------------------- /7. Product Filter/images/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/7. Product Filter/images/8.png -------------------------------------------------------------------------------- /7. Product Filter/images/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/7. Product Filter/images/9.png -------------------------------------------------------------------------------- /7. Product Filter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/7. Product Filter/index.html -------------------------------------------------------------------------------- /7. Product Filter/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/7. Product Filter/script.js -------------------------------------------------------------------------------- /7. Product Filter/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/7. Product Filter/styles.css -------------------------------------------------------------------------------- /8. NotesApp/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5503 3 | } -------------------------------------------------------------------------------- /8. NotesApp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/8. NotesApp/index.html -------------------------------------------------------------------------------- /8. NotesApp/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/8. NotesApp/script.js -------------------------------------------------------------------------------- /8. NotesApp/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/8. NotesApp/styles.css -------------------------------------------------------------------------------- /9. ModalWithProgressBarAndCounter/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5503 3 | } -------------------------------------------------------------------------------- /9. ModalWithProgressBarAndCounter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/9. ModalWithProgressBarAndCounter/index.html -------------------------------------------------------------------------------- /9. ModalWithProgressBarAndCounter/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/9. ModalWithProgressBarAndCounter/script.js -------------------------------------------------------------------------------- /9. ModalWithProgressBarAndCounter/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/9. ModalWithProgressBarAndCounter/styles.css -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinotrust/10JavaScriptProjects/HEAD/README.md --------------------------------------------------------------------------------