├── Landing page ├── css │ ├── bootstrap.min.css │ ├── fontawesome-all.min.css │ ├── styles.css │ └── swiper.css ├── images │ ├── details-1.png │ ├── details-2.png │ ├── download-background.jpg │ ├── download.png │ ├── favicon.png │ ├── features-smartphone-1.png │ ├── features-smartphone-2.png │ ├── features-smartphone-3.png │ ├── header-background.jpg │ ├── header-smartphones.png │ ├── logo.svg │ ├── screenshot-1.png │ ├── screenshot-10.png │ ├── screenshot-2.png │ ├── screenshot-3.png │ ├── screenshot-4.png │ ├── screenshot-5.png │ ├── screenshot-6.png │ ├── screenshot-7.png │ ├── screenshot-8.png │ ├── screenshot-9.png │ └── up-arrow.png ├── index.html ├── js │ ├── bootstrap.min.js │ ├── purecounter.min.js │ ├── replaceme.min.js │ ├── scripts.js │ └── swiper.min.js └── webfonts │ ├── fa-brands-400.eot │ ├── fa-brands-400.svg │ ├── fa-brands-400.ttf │ ├── fa-brands-400.woff │ ├── fa-brands-400.woff2 │ ├── fa-regular-400.eot │ ├── fa-regular-400.svg │ ├── fa-regular-400.ttf │ ├── fa-regular-400.woff │ ├── fa-regular-400.woff2 │ ├── fa-solid-900.eot │ ├── fa-solid-900.svg │ ├── fa-solid-900.ttf │ ├── fa-solid-900.woff │ └── fa-solid-900.woff2 ├── Portfolio ├── LICENSE ├── assets │ ├── css │ │ └── style.css │ ├── img │ │ ├── background │ │ │ ├── bg.jpg │ │ │ └── bg7.jpg │ │ ├── certification │ │ │ ├── dai.jpg │ │ │ ├── ibm.jpg │ │ │ ├── stanford.jpg │ │ │ └── ucsd.jpg │ │ ├── education │ │ │ ├── ASU.jpg │ │ │ └── au.png │ │ ├── me.jpg │ │ └── profile.jpg │ ├── js │ │ └── main.js │ └── vendor │ │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ │ ├── boxicons │ │ ├── css │ │ │ ├── animations.css │ │ │ ├── boxicons.css │ │ │ ├── boxicons.min.css │ │ │ └── transformations.css │ │ └── fonts │ │ │ ├── boxicons.eot │ │ │ ├── boxicons.svg │ │ │ ├── boxicons.ttf │ │ │ ├── boxicons.woff │ │ │ └── boxicons.woff2 │ │ ├── counterup │ │ └── counterup.min.js │ │ ├── icofont │ │ ├── fonts │ │ │ ├── icofont.woff │ │ │ └── icofont.woff2 │ │ └── icofont.min.css │ │ ├── isotope-layout │ │ ├── isotope.pkgd.js │ │ └── isotope.pkgd.min.js │ │ ├── jquery.easing │ │ └── jquery.easing.min.js │ │ ├── jquery │ │ ├── jquery.min.js │ │ └── jquery.min.map │ │ ├── owl.carousel │ │ ├── LICENSE │ │ ├── README.md │ │ ├── assets │ │ │ ├── ajax-loader.gif │ │ │ ├── owl.carousel.css │ │ │ ├── owl.carousel.min.css │ │ │ ├── owl.theme.default.css │ │ │ ├── owl.theme.default.min.css │ │ │ ├── owl.theme.green.css │ │ │ ├── owl.theme.green.min.css │ │ │ └── owl.video.play.png │ │ ├── owl.carousel.js │ │ └── owl.carousel.min.js │ │ ├── php-email-form │ │ └── validate.js │ │ ├── remixicon │ │ ├── remixicon.css │ │ ├── remixicon.eot │ │ ├── remixicon.less │ │ ├── remixicon.svg │ │ ├── remixicon.symbol.svg │ │ ├── remixicon.ttf │ │ ├── remixicon.woff │ │ └── remixicon.woff2 │ │ ├── typed.js │ │ ├── typed.js │ │ ├── typed.min.js │ │ └── typed.min.js.map │ │ ├── venobox │ │ ├── venobox.css │ │ ├── venobox.js │ │ ├── venobox.min.css │ │ └── venobox.min.js │ │ └── waypoints │ │ └── jquery.waypoints.min.js ├── bg.jpg ├── favico.png ├── favicon.png └── index.html └── Temp ├── index.html ├── script.js └── style.css /Landing page/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Landing page/css/bootstrap.min.css -------------------------------------------------------------------------------- /Landing page/css/fontawesome-all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Landing page/css/fontawesome-all.min.css -------------------------------------------------------------------------------- /Landing page/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Landing page/css/styles.css -------------------------------------------------------------------------------- /Landing page/css/swiper.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Landing page/css/swiper.css -------------------------------------------------------------------------------- /Landing page/images/details-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Landing page/images/details-1.png -------------------------------------------------------------------------------- /Landing page/images/details-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Landing page/images/details-2.png -------------------------------------------------------------------------------- /Landing page/images/download-background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Landing page/images/download-background.jpg -------------------------------------------------------------------------------- /Landing page/images/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Landing page/images/download.png -------------------------------------------------------------------------------- /Landing page/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Landing page/images/favicon.png -------------------------------------------------------------------------------- /Landing page/images/features-smartphone-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Landing page/images/features-smartphone-1.png -------------------------------------------------------------------------------- /Landing page/images/features-smartphone-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Landing page/images/features-smartphone-2.png -------------------------------------------------------------------------------- /Landing page/images/features-smartphone-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Landing page/images/features-smartphone-3.png -------------------------------------------------------------------------------- /Landing page/images/header-background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Landing page/images/header-background.jpg -------------------------------------------------------------------------------- /Landing page/images/header-smartphones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Landing page/images/header-smartphones.png -------------------------------------------------------------------------------- /Landing page/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Landing page/images/logo.svg -------------------------------------------------------------------------------- /Landing page/images/screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Landing page/images/screenshot-1.png -------------------------------------------------------------------------------- /Landing page/images/screenshot-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Landing page/images/screenshot-10.png -------------------------------------------------------------------------------- /Landing page/images/screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Landing page/images/screenshot-2.png -------------------------------------------------------------------------------- /Landing page/images/screenshot-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Landing page/images/screenshot-3.png -------------------------------------------------------------------------------- /Landing page/images/screenshot-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Landing page/images/screenshot-4.png -------------------------------------------------------------------------------- /Landing page/images/screenshot-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Landing page/images/screenshot-5.png -------------------------------------------------------------------------------- /Landing page/images/screenshot-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Landing page/images/screenshot-6.png -------------------------------------------------------------------------------- /Landing page/images/screenshot-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Landing page/images/screenshot-7.png -------------------------------------------------------------------------------- /Landing page/images/screenshot-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Landing page/images/screenshot-8.png -------------------------------------------------------------------------------- /Landing page/images/screenshot-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Landing page/images/screenshot-9.png -------------------------------------------------------------------------------- /Landing page/images/up-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Landing page/images/up-arrow.png -------------------------------------------------------------------------------- /Landing page/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Landing page/index.html -------------------------------------------------------------------------------- /Landing page/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Landing page/js/bootstrap.min.js -------------------------------------------------------------------------------- /Landing page/js/purecounter.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Landing page/js/purecounter.min.js -------------------------------------------------------------------------------- /Landing page/js/replaceme.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Landing page/js/replaceme.min.js -------------------------------------------------------------------------------- /Landing page/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Landing page/js/scripts.js -------------------------------------------------------------------------------- /Landing page/js/swiper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Landing page/js/swiper.min.js -------------------------------------------------------------------------------- /Landing page/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Landing page/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /Landing page/webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Landing page/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /Landing page/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Landing page/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /Landing page/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Landing page/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /Landing page/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Landing page/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /Landing page/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Landing page/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /Landing page/webfonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Landing page/webfonts/fa-regular-400.svg -------------------------------------------------------------------------------- /Landing page/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Landing page/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /Landing page/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Landing page/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /Landing page/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Landing page/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /Landing page/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Landing page/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /Landing page/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Landing page/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /Landing page/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Landing page/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /Landing page/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Landing page/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /Landing page/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Landing page/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /Portfolio/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/LICENSE -------------------------------------------------------------------------------- /Portfolio/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/css/style.css -------------------------------------------------------------------------------- /Portfolio/assets/img/background/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/img/background/bg.jpg -------------------------------------------------------------------------------- /Portfolio/assets/img/background/bg7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/img/background/bg7.jpg -------------------------------------------------------------------------------- /Portfolio/assets/img/certification/dai.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/img/certification/dai.jpg -------------------------------------------------------------------------------- /Portfolio/assets/img/certification/ibm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/img/certification/ibm.jpg -------------------------------------------------------------------------------- /Portfolio/assets/img/certification/stanford.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/img/certification/stanford.jpg -------------------------------------------------------------------------------- /Portfolio/assets/img/certification/ucsd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/img/certification/ucsd.jpg -------------------------------------------------------------------------------- /Portfolio/assets/img/education/ASU.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/img/education/ASU.jpg -------------------------------------------------------------------------------- /Portfolio/assets/img/education/au.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/img/education/au.png -------------------------------------------------------------------------------- /Portfolio/assets/img/me.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/img/me.jpg -------------------------------------------------------------------------------- /Portfolio/assets/img/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/img/profile.jpg -------------------------------------------------------------------------------- /Portfolio/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/js/main.js -------------------------------------------------------------------------------- /Portfolio/assets/vendor/bootstrap/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/bootstrap/css/bootstrap-grid.css -------------------------------------------------------------------------------- /Portfolio/assets/vendor/bootstrap/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/bootstrap/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /Portfolio/assets/vendor/bootstrap/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/bootstrap/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /Portfolio/assets/vendor/bootstrap/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/bootstrap/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /Portfolio/assets/vendor/bootstrap/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/bootstrap/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /Portfolio/assets/vendor/bootstrap/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/bootstrap/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /Portfolio/assets/vendor/bootstrap/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/bootstrap/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /Portfolio/assets/vendor/bootstrap/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/bootstrap/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /Portfolio/assets/vendor/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /Portfolio/assets/vendor/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /Portfolio/assets/vendor/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /Portfolio/assets/vendor/bootstrap/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/bootstrap/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /Portfolio/assets/vendor/bootstrap/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/bootstrap/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /Portfolio/assets/vendor/bootstrap/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/bootstrap/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /Portfolio/assets/vendor/bootstrap/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/bootstrap/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /Portfolio/assets/vendor/bootstrap/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/bootstrap/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /Portfolio/assets/vendor/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /Portfolio/assets/vendor/bootstrap/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/bootstrap/js/bootstrap.js.map -------------------------------------------------------------------------------- /Portfolio/assets/vendor/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /Portfolio/assets/vendor/bootstrap/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/bootstrap/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /Portfolio/assets/vendor/boxicons/css/animations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/boxicons/css/animations.css -------------------------------------------------------------------------------- /Portfolio/assets/vendor/boxicons/css/boxicons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/boxicons/css/boxicons.css -------------------------------------------------------------------------------- /Portfolio/assets/vendor/boxicons/css/boxicons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/boxicons/css/boxicons.min.css -------------------------------------------------------------------------------- /Portfolio/assets/vendor/boxicons/css/transformations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/boxicons/css/transformations.css -------------------------------------------------------------------------------- /Portfolio/assets/vendor/boxicons/fonts/boxicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/boxicons/fonts/boxicons.eot -------------------------------------------------------------------------------- /Portfolio/assets/vendor/boxicons/fonts/boxicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/boxicons/fonts/boxicons.svg -------------------------------------------------------------------------------- /Portfolio/assets/vendor/boxicons/fonts/boxicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/boxicons/fonts/boxicons.ttf -------------------------------------------------------------------------------- /Portfolio/assets/vendor/boxicons/fonts/boxicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/boxicons/fonts/boxicons.woff -------------------------------------------------------------------------------- /Portfolio/assets/vendor/boxicons/fonts/boxicons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/boxicons/fonts/boxicons.woff2 -------------------------------------------------------------------------------- /Portfolio/assets/vendor/counterup/counterup.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/counterup/counterup.min.js -------------------------------------------------------------------------------- /Portfolio/assets/vendor/icofont/fonts/icofont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/icofont/fonts/icofont.woff -------------------------------------------------------------------------------- /Portfolio/assets/vendor/icofont/fonts/icofont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/icofont/fonts/icofont.woff2 -------------------------------------------------------------------------------- /Portfolio/assets/vendor/icofont/icofont.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/icofont/icofont.min.css -------------------------------------------------------------------------------- /Portfolio/assets/vendor/isotope-layout/isotope.pkgd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/isotope-layout/isotope.pkgd.js -------------------------------------------------------------------------------- /Portfolio/assets/vendor/isotope-layout/isotope.pkgd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/isotope-layout/isotope.pkgd.min.js -------------------------------------------------------------------------------- /Portfolio/assets/vendor/jquery.easing/jquery.easing.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/jquery.easing/jquery.easing.min.js -------------------------------------------------------------------------------- /Portfolio/assets/vendor/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/jquery/jquery.min.js -------------------------------------------------------------------------------- /Portfolio/assets/vendor/jquery/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/jquery/jquery.min.map -------------------------------------------------------------------------------- /Portfolio/assets/vendor/owl.carousel/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/owl.carousel/LICENSE -------------------------------------------------------------------------------- /Portfolio/assets/vendor/owl.carousel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/owl.carousel/README.md -------------------------------------------------------------------------------- /Portfolio/assets/vendor/owl.carousel/assets/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/owl.carousel/assets/ajax-loader.gif -------------------------------------------------------------------------------- /Portfolio/assets/vendor/owl.carousel/assets/owl.carousel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/owl.carousel/assets/owl.carousel.css -------------------------------------------------------------------------------- /Portfolio/assets/vendor/owl.carousel/assets/owl.carousel.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/owl.carousel/assets/owl.carousel.min.css -------------------------------------------------------------------------------- /Portfolio/assets/vendor/owl.carousel/assets/owl.theme.default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/owl.carousel/assets/owl.theme.default.css -------------------------------------------------------------------------------- /Portfolio/assets/vendor/owl.carousel/assets/owl.theme.default.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/owl.carousel/assets/owl.theme.default.min.css -------------------------------------------------------------------------------- /Portfolio/assets/vendor/owl.carousel/assets/owl.theme.green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/owl.carousel/assets/owl.theme.green.css -------------------------------------------------------------------------------- /Portfolio/assets/vendor/owl.carousel/assets/owl.theme.green.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/owl.carousel/assets/owl.theme.green.min.css -------------------------------------------------------------------------------- /Portfolio/assets/vendor/owl.carousel/assets/owl.video.play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/owl.carousel/assets/owl.video.play.png -------------------------------------------------------------------------------- /Portfolio/assets/vendor/owl.carousel/owl.carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/owl.carousel/owl.carousel.js -------------------------------------------------------------------------------- /Portfolio/assets/vendor/owl.carousel/owl.carousel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/owl.carousel/owl.carousel.min.js -------------------------------------------------------------------------------- /Portfolio/assets/vendor/php-email-form/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/php-email-form/validate.js -------------------------------------------------------------------------------- /Portfolio/assets/vendor/remixicon/remixicon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/remixicon/remixicon.css -------------------------------------------------------------------------------- /Portfolio/assets/vendor/remixicon/remixicon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/remixicon/remixicon.eot -------------------------------------------------------------------------------- /Portfolio/assets/vendor/remixicon/remixicon.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/remixicon/remixicon.less -------------------------------------------------------------------------------- /Portfolio/assets/vendor/remixicon/remixicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/remixicon/remixicon.svg -------------------------------------------------------------------------------- /Portfolio/assets/vendor/remixicon/remixicon.symbol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/remixicon/remixicon.symbol.svg -------------------------------------------------------------------------------- /Portfolio/assets/vendor/remixicon/remixicon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/remixicon/remixicon.ttf -------------------------------------------------------------------------------- /Portfolio/assets/vendor/remixicon/remixicon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/remixicon/remixicon.woff -------------------------------------------------------------------------------- /Portfolio/assets/vendor/remixicon/remixicon.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/remixicon/remixicon.woff2 -------------------------------------------------------------------------------- /Portfolio/assets/vendor/typed.js/typed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/typed.js/typed.js -------------------------------------------------------------------------------- /Portfolio/assets/vendor/typed.js/typed.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/typed.js/typed.min.js -------------------------------------------------------------------------------- /Portfolio/assets/vendor/typed.js/typed.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/typed.js/typed.min.js.map -------------------------------------------------------------------------------- /Portfolio/assets/vendor/venobox/venobox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/venobox/venobox.css -------------------------------------------------------------------------------- /Portfolio/assets/vendor/venobox/venobox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/venobox/venobox.js -------------------------------------------------------------------------------- /Portfolio/assets/vendor/venobox/venobox.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/venobox/venobox.min.css -------------------------------------------------------------------------------- /Portfolio/assets/vendor/venobox/venobox.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/venobox/venobox.min.js -------------------------------------------------------------------------------- /Portfolio/assets/vendor/waypoints/jquery.waypoints.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/assets/vendor/waypoints/jquery.waypoints.min.js -------------------------------------------------------------------------------- /Portfolio/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/bg.jpg -------------------------------------------------------------------------------- /Portfolio/favico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/favico.png -------------------------------------------------------------------------------- /Portfolio/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/favicon.png -------------------------------------------------------------------------------- /Portfolio/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Portfolio/index.html -------------------------------------------------------------------------------- /Temp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Temp/index.html -------------------------------------------------------------------------------- /Temp/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Temp/script.js -------------------------------------------------------------------------------- /Temp/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thamizh5253/OIBSIP/HEAD/Temp/style.css --------------------------------------------------------------------------------