├── .gitignore ├── CNAME ├── Robots.txt ├── about-us.html ├── css ├── about-us.css ├── libs │ ├── carosel.css │ ├── magnafic-popup.css │ └── responsive.css └── style.css ├── google43a1e7ea8e6ecb51.html ├── google98684a07a1ffbaba.html ├── img ├── 1m-banner.svg ├── 1m.svg ├── 3x.svg ├── Mask_Group.png ├── Planet.svg ├── app.png ├── assignment │ ├── assignment-1.png │ ├── assignment-2.png │ ├── assignment-3.png │ ├── assignment-4.png │ └── assignment-5.png ├── badges.png ├── banner-bottom-shape.svg ├── banner-phone.png ├── banner-right.png ├── banner-top-shape.svg ├── banner.png ├── banner │ ├── js.png │ ├── python.png │ └── react.png ├── code-play.png ├── code.svg ├── coder.png ├── course-shape.png ├── course-thumbnails.png ├── course │ ├── calendar.png │ ├── course-thumbnail.png │ ├── rating.png │ └── users.png ├── dddd.png ├── developer.png ├── document.png ├── dot-shape.png ├── employer.svg ├── file.png ├── google-play.svg ├── guides.png ├── info1.png ├── info2.png ├── info3.png ├── istore.svg ├── job-shadow.1.png ├── job-shadow2.png ├── job-shadow3.png ├── job.png ├── live.svg ├── logo.png ├── offline.png ├── phone-2.png ├── phone.png ├── phone.svg ├── play.png ├── productive.png ├── ratings.svg ├── review.svg ├── reviewer.png ├── shap-1.png ├── shap2.png ├── shape3.png ├── shape4.png ├── shape5.png ├── shape7.png ├── shape8.png ├── startup.svg ├── users.png ├── web.svg ├── work1.png ├── work2.png └── work3.png ├── index.html ├── js ├── libs │ ├── carousel.js │ ├── index.js │ └── magnafic-popup.js └── teams.js ├── sitemap.xml └── zohoverify └── verifyforzoho.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/.gitignore -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | www.programming-hero.com -------------------------------------------------------------------------------- /Robots.txt: -------------------------------------------------------------------------------- 1 | User-Agent: * 2 | Disallow: -------------------------------------------------------------------------------- /about-us.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/about-us.html -------------------------------------------------------------------------------- /css/about-us.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/css/about-us.css -------------------------------------------------------------------------------- /css/libs/carosel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/css/libs/carosel.css -------------------------------------------------------------------------------- /css/libs/magnafic-popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/css/libs/magnafic-popup.css -------------------------------------------------------------------------------- /css/libs/responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/css/libs/responsive.css -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/css/style.css -------------------------------------------------------------------------------- /google43a1e7ea8e6ecb51.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/google43a1e7ea8e6ecb51.html -------------------------------------------------------------------------------- /google98684a07a1ffbaba.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/google98684a07a1ffbaba.html -------------------------------------------------------------------------------- /img/1m-banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/1m-banner.svg -------------------------------------------------------------------------------- /img/1m.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/1m.svg -------------------------------------------------------------------------------- /img/3x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/3x.svg -------------------------------------------------------------------------------- /img/Mask_Group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/Mask_Group.png -------------------------------------------------------------------------------- /img/Planet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/Planet.svg -------------------------------------------------------------------------------- /img/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/app.png -------------------------------------------------------------------------------- /img/assignment/assignment-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/assignment/assignment-1.png -------------------------------------------------------------------------------- /img/assignment/assignment-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/assignment/assignment-2.png -------------------------------------------------------------------------------- /img/assignment/assignment-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/assignment/assignment-3.png -------------------------------------------------------------------------------- /img/assignment/assignment-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/assignment/assignment-4.png -------------------------------------------------------------------------------- /img/assignment/assignment-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/assignment/assignment-5.png -------------------------------------------------------------------------------- /img/badges.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/badges.png -------------------------------------------------------------------------------- /img/banner-bottom-shape.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/banner-bottom-shape.svg -------------------------------------------------------------------------------- /img/banner-phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/banner-phone.png -------------------------------------------------------------------------------- /img/banner-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/banner-right.png -------------------------------------------------------------------------------- /img/banner-top-shape.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/banner-top-shape.svg -------------------------------------------------------------------------------- /img/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/banner.png -------------------------------------------------------------------------------- /img/banner/js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/banner/js.png -------------------------------------------------------------------------------- /img/banner/python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/banner/python.png -------------------------------------------------------------------------------- /img/banner/react.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/banner/react.png -------------------------------------------------------------------------------- /img/code-play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/code-play.png -------------------------------------------------------------------------------- /img/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/code.svg -------------------------------------------------------------------------------- /img/coder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/coder.png -------------------------------------------------------------------------------- /img/course-shape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/course-shape.png -------------------------------------------------------------------------------- /img/course-thumbnails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/course-thumbnails.png -------------------------------------------------------------------------------- /img/course/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/course/calendar.png -------------------------------------------------------------------------------- /img/course/course-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/course/course-thumbnail.png -------------------------------------------------------------------------------- /img/course/rating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/course/rating.png -------------------------------------------------------------------------------- /img/course/users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/course/users.png -------------------------------------------------------------------------------- /img/dddd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/dddd.png -------------------------------------------------------------------------------- /img/developer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/developer.png -------------------------------------------------------------------------------- /img/document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/document.png -------------------------------------------------------------------------------- /img/dot-shape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/dot-shape.png -------------------------------------------------------------------------------- /img/employer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/employer.svg -------------------------------------------------------------------------------- /img/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/file.png -------------------------------------------------------------------------------- /img/google-play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/google-play.svg -------------------------------------------------------------------------------- /img/guides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/guides.png -------------------------------------------------------------------------------- /img/info1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/info1.png -------------------------------------------------------------------------------- /img/info2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/info2.png -------------------------------------------------------------------------------- /img/info3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/info3.png -------------------------------------------------------------------------------- /img/istore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/istore.svg -------------------------------------------------------------------------------- /img/job-shadow.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/job-shadow.1.png -------------------------------------------------------------------------------- /img/job-shadow2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/job-shadow2.png -------------------------------------------------------------------------------- /img/job-shadow3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/job-shadow3.png -------------------------------------------------------------------------------- /img/job.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/job.png -------------------------------------------------------------------------------- /img/live.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/live.svg -------------------------------------------------------------------------------- /img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/logo.png -------------------------------------------------------------------------------- /img/offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/offline.png -------------------------------------------------------------------------------- /img/phone-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/phone-2.png -------------------------------------------------------------------------------- /img/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/phone.png -------------------------------------------------------------------------------- /img/phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/phone.svg -------------------------------------------------------------------------------- /img/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/play.png -------------------------------------------------------------------------------- /img/productive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/productive.png -------------------------------------------------------------------------------- /img/ratings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/ratings.svg -------------------------------------------------------------------------------- /img/review.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/review.svg -------------------------------------------------------------------------------- /img/reviewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/reviewer.png -------------------------------------------------------------------------------- /img/shap-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/shap-1.png -------------------------------------------------------------------------------- /img/shap2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/shap2.png -------------------------------------------------------------------------------- /img/shape3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/shape3.png -------------------------------------------------------------------------------- /img/shape4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/shape4.png -------------------------------------------------------------------------------- /img/shape5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/shape5.png -------------------------------------------------------------------------------- /img/shape7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/shape7.png -------------------------------------------------------------------------------- /img/shape8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/shape8.png -------------------------------------------------------------------------------- /img/startup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/startup.svg -------------------------------------------------------------------------------- /img/users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/users.png -------------------------------------------------------------------------------- /img/web.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/web.svg -------------------------------------------------------------------------------- /img/work1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/work1.png -------------------------------------------------------------------------------- /img/work2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/work2.png -------------------------------------------------------------------------------- /img/work3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/img/work3.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/index.html -------------------------------------------------------------------------------- /js/libs/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/js/libs/carousel.js -------------------------------------------------------------------------------- /js/libs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/js/libs/index.js -------------------------------------------------------------------------------- /js/libs/magnafic-popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/js/libs/magnafic-popup.js -------------------------------------------------------------------------------- /js/teams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/js/teams.js -------------------------------------------------------------------------------- /sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khan4019/programming-hero/HEAD/sitemap.xml -------------------------------------------------------------------------------- /zohoverify/verifyforzoho.html: -------------------------------------------------------------------------------- 1 | 14330459 --------------------------------------------------------------------------------