├── .github ├── ISSUE_TEMPLATE │ ├── add-project---.md │ ├── docs-addition-template---.md │ └── reference-addition-template---.md ├── PULL_REQUEST_TEMPLATE.md ├── labels.json └── workflows │ └── issue-label.yml ├── CODE_OF_CONDUCT.md ├── Docs ├── 0 . References │ └── readme.md ├── 1. HTML │ ├── Attributes.md │ ├── Audio&Video.html │ ├── Forms.md │ ├── ISOCountryCode.md │ ├── ISOLanguageCodes.md │ ├── Sudoku_Solver.md │ ├── event.md │ ├── iframe.md │ ├── list.html │ ├── sample.md │ └── table.md ├── 2. CSS │ ├── CSS_Positioning.md │ ├── Sudoku_Solver.md │ ├── mediaQuery.md │ └── sample.md ├── 3. JAVASCRIPT │ ├── Sudoku_Solver.md │ └── sample.md └── readme.md ├── Projects ├── BMI Calculator │ ├── Assets │ │ ├── css │ │ │ └── style.css │ │ └── media │ │ │ ├── demo.gif │ │ │ └── ss1.png │ ├── index.html │ ├── readme.md │ └── script │ │ └── script.js ├── Calculator │ ├── Assets │ │ └── calculator.css │ ├── index.html │ └── script │ │ └── calculator.js ├── Coin Toss App │ ├── Assets │ │ ├── css │ │ │ └── style.css │ │ └── media │ │ │ ├── demo.gif │ │ │ ├── heads.svg │ │ │ ├── ss1.png │ │ │ └── tails.svg │ ├── index.html │ ├── readme.md │ └── script │ │ └── script.js ├── Covid Tracker App │ ├── Assets │ │ ├── css │ │ │ └── style.css │ │ └── media │ │ │ ├── demo.gif │ │ │ └── ss1.png │ ├── index.html │ ├── readme.md │ └── script │ │ └── script.js ├── Custom-Range-Slider │ ├── Assets │ │ └── CSS │ │ │ └── style.css │ ├── README.md │ ├── Scripts │ │ └── script.js │ └── index.html ├── Double-Vertical-Slider │ ├── README.md │ ├── assets │ │ └── css │ │ │ └── style.css │ ├── index.html │ └── scripts │ │ └── script.js ├── Gradient_Background_Generator │ ├── Assets │ │ ├── css │ │ │ └── style.css │ │ └── media │ │ │ ├── Demo-1.png │ │ │ └── Demo-2.png │ ├── Readme.md │ ├── index.html │ └── script │ │ └── script.js ├── Joke Generator │ ├── css │ │ └── styles.css │ ├── index.html │ └── js │ │ └── scripts.js ├── Joke-Telling-Robot │ ├── Assets │ │ ├── css │ │ │ └── style.css │ │ └── media │ │ │ ├── Joke Telling Robot.mp4 │ │ │ └── ss1.png │ ├── index.html │ ├── readme.md │ └── script │ │ └── script.js ├── JumpingDinosaurGame │ ├── images │ │ ├── bg1.jpg │ │ ├── dino.png │ │ └── dragon.png │ ├── index.html │ ├── music │ │ ├── Jumping Game_gameover.mp3 │ │ └── Jumping Game_music.mp3 │ ├── script.js │ └── style.css ├── Lets practice │ ├── add.html │ ├── assets │ │ └── css │ │ │ ├── index.css │ │ │ └── page.css │ ├── div.html │ ├── index.html │ ├── mul.html │ ├── readme.md │ └── sub.html ├── Maths quiz game │ ├── README.md │ ├── assets │ │ └── quiz.css │ └── quiz.html ├── Memory_Card_Game │ ├── Assets │ │ ├── css │ │ │ └── style.css │ │ └── media │ │ │ ├── images │ │ │ ├── back.jpg │ │ │ ├── c++.png │ │ │ ├── css.png │ │ │ ├── html.png │ │ │ ├── java.jpg │ │ │ ├── javascript.png │ │ │ ├── kotlin.jpg │ │ │ ├── php.png │ │ │ └── python.jpg │ │ │ └── screenshots │ │ │ ├── back_to_original.png │ │ │ ├── matched.png │ │ │ └── not_matched.png │ ├── Pages │ │ └── mainGame.html │ ├── README.md │ └── Script │ │ └── index.js ├── Music App │ ├── README.md │ ├── assets │ │ ├── css │ │ │ └── style.css │ │ └── media │ │ │ ├── Music App Output.PNG │ │ │ ├── song1.mp3.mp3 │ │ │ ├── song2.mp3.mp3 │ │ │ ├── song3.mp3.mp3 │ │ │ ├── song4.mp3.mp3 │ │ │ ├── song5.mp3.mp3 │ │ │ └── song6.mp3.mp3 │ ├── index.html │ └── script │ │ └── script.js ├── Netflix UI Clone │ ├── Assets │ │ ├── css │ │ │ └── style.css │ │ └── media │ │ │ ├── demo.gif │ │ │ ├── ss1.png │ │ │ ├── ss2.png │ │ │ └── ss3.png │ ├── index.html │ └── script │ │ └── script.js ├── Password Generator │ ├── Assets │ │ ├── css │ │ │ └── style.css │ │ └── media │ │ │ ├── demo.gif │ │ │ └── ss1.png │ ├── index.html │ ├── readme.md │ └── script │ │ └── script.js ├── Project_Structure │ ├── Assets │ │ ├── css │ │ │ ├── Sudoku_Solver.css │ │ │ └── style.css │ │ └── media │ │ │ ├── Sudoku_Solver.jpeg │ │ │ └── image.png │ ├── Pages │ │ ├── Sudoku_Solver.html │ │ └── page2.html │ ├── readme.md │ └── script │ │ ├── Sudoku _Solver.js │ │ └── script.js ├── QR-Code-Generator │ ├── Assets │ │ ├── css │ │ │ └── style.css │ │ └── media │ │ │ ├── demo.gif │ │ │ ├── ss1.png │ │ │ └── ss2.png │ ├── README.md │ ├── index.html │ └── script │ │ └── script.js ├── Quote Generator │ ├── Assets │ │ ├── css │ │ │ └── style.css │ │ └── media │ │ │ └── ss1.png │ ├── README.md │ ├── index.html │ └── script │ │ └── script.js ├── Simon Game │ ├── Assets │ │ ├── css │ │ │ └── styles.css │ │ └── media │ │ │ ├── blue.mp3 │ │ │ ├── green.mp3 │ │ │ ├── red.mp3 │ │ │ ├── wrong.mp3 │ │ │ └── yellow.mp3 │ ├── index.html │ ├── readme.md │ └── scripts │ │ └── game.js ├── Snake-Game │ ├── Readme.md │ ├── Scripts │ │ └── script.js │ ├── assets │ │ ├── CSS │ │ │ └── style.css │ │ └── media │ │ │ └── images │ │ │ ├── apple1.png │ │ │ ├── mango.png │ │ │ ├── pear.png │ │ │ └── wp2409705.jpg │ └── index.html ├── Sudoku_Solver.md ├── The Dice Game │ ├── Assets │ │ ├── css │ │ │ └── styles.css │ │ └── media │ │ │ ├── dice1.png │ │ │ ├── dice2.png │ │ │ ├── dice3.png │ │ │ ├── dice4.png │ │ │ ├── dice5.png │ │ │ └── dice6.png │ ├── index.html │ ├── readme.md │ └── scripts │ │ └── index.js ├── The Drum Kit │ ├── Assets │ │ ├── css │ │ │ └── styles.css │ │ └── media │ │ │ ├── images │ │ │ ├── crash.png │ │ │ ├── kick.png │ │ │ ├── snare.png │ │ │ ├── tom1.png │ │ │ ├── tom2.png │ │ │ ├── tom3.png │ │ │ └── tom4.png │ │ │ └── sounds │ │ │ ├── crash.mp3 │ │ │ ├── kick-bass.mp3 │ │ │ ├── snare.mp3 │ │ │ ├── tom-1.mp3 │ │ │ ├── tom-2.mp3 │ │ │ ├── tom-3.mp3 │ │ │ └── tom-4.mp3 │ ├── index.html │ ├── readme.md │ └── scripts │ │ └── index.js ├── Tic-Tac-Toe-Game │ ├── Assets │ │ └── CSS │ │ │ └── style.css │ ├── README.md │ ├── Scripts │ │ └── script.js │ └── index.html ├── TinDog │ ├── Assets │ │ ├── css │ │ │ └── styles.css │ │ └── media │ │ │ ├── TechCrunch.png │ │ │ ├── bizinsider.png │ │ │ ├── dog-img.jpg │ │ │ ├── iphone6.png │ │ │ ├── lady-img.jpg │ │ │ ├── mashable.png │ │ │ └── tnw.png │ ├── index.html │ └── readme.md ├── Tip Calculator │ ├── Assets │ │ ├── css │ │ │ └── style.css │ │ └── media │ │ │ ├── demo.gif │ │ │ ├── ss1.png │ │ │ └── ss2.png │ ├── index.html │ ├── readme.md │ └── script │ │ └── script.js ├── Weather Application │ ├── Assets │ │ └── css │ │ │ └── style.css │ ├── index.html │ ├── readme.md │ └── script │ │ └── script.js ├── Weather-App │ ├── Assets │ │ ├── css │ │ │ └── style.css │ │ └── media │ │ │ └── Weather-App.jpg │ ├── README.md │ ├── Script │ │ └── script.js │ └── index.html ├── Youtube-Clone │ ├── Assets │ │ ├── css │ │ │ └── styles.css │ │ └── media │ │ │ ├── favicon_32x32.png │ │ │ ├── youtube_logo.png │ │ │ └── youtube_logo.webp │ ├── README.md │ └── index.html ├── compound-interest-calculator │ ├── Assets │ │ └── style.css │ ├── README.md │ ├── index.html │ └── script │ │ └── script.js ├── tabla │ ├── assets │ │ ├── css │ │ │ └── index.css │ │ └── media │ │ │ ├── d.mp3 │ │ │ ├── t.mp3 │ │ │ ├── tap1.png │ │ │ └── tap2.png │ ├── index.html │ ├── readme.md │ └── script │ │ └── index.js ├── text to speech │ ├── README_txt_to_speech.md │ ├── assets │ │ └── text_to_speech.css │ └── text_to_speech.html ├── timer │ ├── README.md │ ├── index.html │ └── script │ │ └── index.js └── to do list │ ├── pages │ └── index.html │ ├── readme.md │ └── script │ └── sample.js ├── Tribute_To_Contributors.html ├── assets ├── css │ ├── Sudoku_Solver.css │ └── style.css └── media │ ├── Sudoku_Solver.jpeg │ ├── banner.png │ ├── sample │ └── tree-struct.PNG ├── contributionGuidelines.md ├── index.html ├── readme.md └── script.js /.github/ISSUE_TEMPLATE/add-project---.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "Add Project \U0001F4BB" 3 | about: If you want to add project of your idea feel free to open issue ✅ 4 | title: '' 5 | labels: Project Addition ✅ 6 | assignees: '' 7 | 8 | --- 9 | 10 | ## Checks 11 | [ ] Project uses HTML , CSS , JS 12 | [ ] Project can be hosted on GitHub 13 | 14 | ## **Describe the Project** 15 | 16 | - A clear and concise description of what the Project is. 17 | 18 | 19 | 20 | ## **Screenshots** 21 | 22 | - If applicable, add screenshots to help explain your project. 23 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/docs-addition-template---.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "Docs Addition Template \U0001F4BB" 3 | about: 'If you want to add notes in Docs Folder ' 4 | title: '' 5 | labels: Docs Addition ✅ 6 | assignees: '' 7 | 8 | --- 9 | 10 | ## Which Topic Notes will you like to add 11 | [ ] HTML 12 | [ ] CSS 13 | [ ] JS 14 | 15 | ## **Describe the Topic ** 16 | - A clear and concise description of what the topic is. 17 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/reference-addition-template---.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "Reference Addition Template \U0001F4BB" 3 | about: If you want to add References 4 | title: '' 5 | labels: Reference Addition ✅ 6 | assignees: '' 7 | 8 | --- 9 | 10 | ## Which Topic References will you like to add 11 | [ ] HTML 12 | [ ] CSS 13 | [ ] JS 14 | 15 | ## ** How the Reference helped you explain in short** 16 | - A clear and concise description of what the topic is. 17 | 18 | Mention reference here 👇🏻 19 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | # Description 2 | 3 | Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change. 4 | 5 | Fixes # (issue no.) 6 | 7 | 8 | ## Type of change 9 | 10 | 11 | 12 | - [ ] Bug fix (non-breaking change which fixes an issue) 13 | - [ ] New Project / Docs 14 | - [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) 15 | - [ ] This change requires a documentation update 16 | 17 | # Explain the Testing instructions 18 | 19 | **Test Configuration**: 20 | * Operating system: 21 | * Version: 22 | * Text-editors used: 23 | 24 | # Checklist: 25 | 26 | - [ ] My code follows the style guidelines of this project 27 | - [ ] I have performed a self-review of my own code 28 | - [ ] I have commented my code, particularly in hard-to-understand areas 29 | - [ ] I have made corresponding changes to the documentation 30 | - [ ] My changes generate no new warnings 31 | - [ ] I have added tests that prove my fix is effective or that my feature works 32 | - [ ] New and existing unit tests pass locally with my changes 33 | - [ ] Any dependent changes have been merged and published in downstream modules 34 | # ATTACH SCREEN-SHOTS / DEPLOYMENT LINK 35 | -------------------------------------------------------------------------------- /.github/labels.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "good first issue", 4 | "description": "This issue is good for first timers", 5 | "color": "a9e3ff" 6 | }, 7 | { 8 | "name": "🆘 help wanted", 9 | "description": "This issue needs help ! Please help if possible !", 10 | "color": "ff00ff" 11 | }, 12 | { 13 | "name": "🟥 Level4 ", 14 | "description": "This issue will be considered as level 4 issue for LGM-SOC 21.Points will be 45.", 15 | "color": "b60205" 16 | }, 17 | { 18 | "name": "🟧 Level3 ", 19 | "description": "This issue will be considered as level 3 issue for LGM-SOC 21.Points will be 30.", 20 | "color": "ff9f1c" 21 | }, 22 | { 23 | "name": "🟨 Level2 ", 24 | "description": "This issue will be considered as level 2 issue for LGM-SOC 21.Points will be 15", 25 | "color": "ffcc00" 26 | }, 27 | { 28 | "name": "🟩 Level1 ", 29 | "description": "This issue will be considered as level 1 issue for LGM-SOC 21.Points will be 10", 30 | "color": "cfda2c" 31 | }, 32 | { 33 | "name": "🟪 Level0 ", 34 | "description": "This issue will be considered as level 0 issue for LGM-SOC 21.Points will be 5", 35 | "color": "aa00de" 36 | }, 37 | { 38 | "name": " LGMSOC21 ", 39 | "description": "This issue will be considered for LGM-SOC 21", 40 | "color": "d93f0b" 41 | }, 42 | { 43 | "name": " 🤩 Up for Grab ", 44 | "description": "This issue will is not assigned ! Grab It !", 45 | "color": "bf00ff" 46 | } 47 | ] 48 | -------------------------------------------------------------------------------- /.github/workflows/issue-label.yml: -------------------------------------------------------------------------------- 1 | name: Default 2 | 3 | on: [push] 4 | 5 | jobs: 6 | build: 7 | runs-on: ubuntu-latest 8 | steps: 9 | - uses: actions/checkout@v1 10 | - name: Label Syncer 11 | uses: micnncim/action-label-syncer@v1.3.0 12 | env: 13 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 14 | GITHUB_REPOSITORY: ${{ github.repository }} 15 | with: 16 | manifest: .github/labels.json 17 | prune: false 18 | -------------------------------------------------------------------------------- /Docs/0 . References/readme.md: -------------------------------------------------------------------------------- 1 | In this file you can add references to Other documentation, videos , blog which you find helpfull which learning web development ! 2 | -------------------------------------------------------------------------------- /Docs/1. HTML/Audio&Video.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 |