├── README.md ├── css ├── addons │ ├── datatables.css │ └── datatables.min.css ├── bootstrap.css ├── bootstrap.min.css ├── mdb.css ├── mdb.min.css ├── style.css └── style.min.css ├── font └── roboto │ ├── Roboto-Bold.eot │ ├── Roboto-Bold.ttf │ ├── Roboto-Bold.woff │ ├── Roboto-Bold.woff2 │ ├── Roboto-Light.eot │ ├── Roboto-Light.ttf │ ├── Roboto-Light.woff │ ├── Roboto-Light.woff2 │ ├── Roboto-Medium.eot │ ├── Roboto-Medium.ttf │ ├── Roboto-Medium.woff │ ├── Roboto-Medium.woff2 │ ├── Roboto-Regular.eot │ ├── Roboto-Regular.ttf │ ├── Roboto-Regular.woff │ ├── Roboto-Regular.woff2 │ ├── Roboto-Thin.eot │ ├── Roboto-Thin.ttf │ ├── Roboto-Thin.woff │ └── Roboto-Thin.woff2 ├── img ├── lightbox │ ├── default-skin.png │ ├── default-skin.svg │ └── preloader.gif ├── overlays │ ├── 01.png │ ├── 02.png │ ├── 03.png │ ├── 04.png │ ├── 05.png │ ├── 06.png │ ├── 07.png │ ├── 08.png │ └── 09.png └── svg │ ├── arrow_left.svg │ └── arrow_right.svg ├── index.html ├── js ├── addons │ ├── datatables.js │ └── datatables.min.js ├── bootstrap.js ├── bootstrap.min.js ├── jquery-3.3.1.min.js ├── mdb.js ├── mdb.min.js ├── modules │ ├── chart.js │ ├── enhanced-modals.js │ ├── forms-free.js │ ├── jquery.easing.js │ ├── scrolling-navbar.js │ ├── velocity.min.js │ ├── waves.js │ └── wow.js └── popper.min.js └── scss ├── _custom-skin.scss ├── _custom-styles.scss ├── _custom-variables.scss ├── addons └── _datatables.scss ├── core ├── _colors.scss ├── _global.scss ├── _helpers.scss ├── _masks.scss ├── _mixins.scss ├── _typography.scss ├── _variables.scss ├── _waves.scss └── bootstrap │ ├── _functions.scss │ └── _variables.scss ├── free ├── _animations-basic.scss ├── _animations-extended.scss ├── _badges.scss ├── _buttons.scss ├── _cards.scss ├── _carousels.scss ├── _depreciated.scss ├── _dropdowns.scss ├── _footers.scss ├── _forms.scss ├── _input-group.scss ├── _list-group.scss ├── _modals.scss ├── _msc.scss ├── _navbars.scss ├── _pagination.scss └── _tables.scss ├── mdb.scss └── style.scss /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/README.md -------------------------------------------------------------------------------- /css/addons/datatables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/css/addons/datatables.css -------------------------------------------------------------------------------- /css/addons/datatables.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/css/addons/datatables.min.css -------------------------------------------------------------------------------- /css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/css/bootstrap.css -------------------------------------------------------------------------------- /css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/css/bootstrap.min.css -------------------------------------------------------------------------------- /css/mdb.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/css/mdb.css -------------------------------------------------------------------------------- /css/mdb.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/css/mdb.min.css -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/css/style.css -------------------------------------------------------------------------------- /css/style.min.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /font/roboto/Roboto-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/font/roboto/Roboto-Bold.eot -------------------------------------------------------------------------------- /font/roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/font/roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /font/roboto/Roboto-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/font/roboto/Roboto-Bold.woff -------------------------------------------------------------------------------- /font/roboto/Roboto-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/font/roboto/Roboto-Bold.woff2 -------------------------------------------------------------------------------- /font/roboto/Roboto-Light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/font/roboto/Roboto-Light.eot -------------------------------------------------------------------------------- /font/roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/font/roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /font/roboto/Roboto-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/font/roboto/Roboto-Light.woff -------------------------------------------------------------------------------- /font/roboto/Roboto-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/font/roboto/Roboto-Light.woff2 -------------------------------------------------------------------------------- /font/roboto/Roboto-Medium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/font/roboto/Roboto-Medium.eot -------------------------------------------------------------------------------- /font/roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/font/roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /font/roboto/Roboto-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/font/roboto/Roboto-Medium.woff -------------------------------------------------------------------------------- /font/roboto/Roboto-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/font/roboto/Roboto-Medium.woff2 -------------------------------------------------------------------------------- /font/roboto/Roboto-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/font/roboto/Roboto-Regular.eot -------------------------------------------------------------------------------- /font/roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/font/roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /font/roboto/Roboto-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/font/roboto/Roboto-Regular.woff -------------------------------------------------------------------------------- /font/roboto/Roboto-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/font/roboto/Roboto-Regular.woff2 -------------------------------------------------------------------------------- /font/roboto/Roboto-Thin.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/font/roboto/Roboto-Thin.eot -------------------------------------------------------------------------------- /font/roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/font/roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /font/roboto/Roboto-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/font/roboto/Roboto-Thin.woff -------------------------------------------------------------------------------- /font/roboto/Roboto-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/font/roboto/Roboto-Thin.woff2 -------------------------------------------------------------------------------- /img/lightbox/default-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/img/lightbox/default-skin.png -------------------------------------------------------------------------------- /img/lightbox/default-skin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/img/lightbox/default-skin.svg -------------------------------------------------------------------------------- /img/lightbox/preloader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/img/lightbox/preloader.gif -------------------------------------------------------------------------------- /img/overlays/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/img/overlays/01.png -------------------------------------------------------------------------------- /img/overlays/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/img/overlays/02.png -------------------------------------------------------------------------------- /img/overlays/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/img/overlays/03.png -------------------------------------------------------------------------------- /img/overlays/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/img/overlays/04.png -------------------------------------------------------------------------------- /img/overlays/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/img/overlays/05.png -------------------------------------------------------------------------------- /img/overlays/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/img/overlays/06.png -------------------------------------------------------------------------------- /img/overlays/07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/img/overlays/07.png -------------------------------------------------------------------------------- /img/overlays/08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/img/overlays/08.png -------------------------------------------------------------------------------- /img/overlays/09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/img/overlays/09.png -------------------------------------------------------------------------------- /img/svg/arrow_left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/img/svg/arrow_left.svg -------------------------------------------------------------------------------- /img/svg/arrow_right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/img/svg/arrow_right.svg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/index.html -------------------------------------------------------------------------------- /js/addons/datatables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/js/addons/datatables.js -------------------------------------------------------------------------------- /js/addons/datatables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/js/addons/datatables.min.js -------------------------------------------------------------------------------- /js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/js/bootstrap.js -------------------------------------------------------------------------------- /js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/js/bootstrap.min.js -------------------------------------------------------------------------------- /js/jquery-3.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/js/jquery-3.3.1.min.js -------------------------------------------------------------------------------- /js/mdb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/js/mdb.js -------------------------------------------------------------------------------- /js/mdb.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/js/mdb.min.js -------------------------------------------------------------------------------- /js/modules/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/js/modules/chart.js -------------------------------------------------------------------------------- /js/modules/enhanced-modals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/js/modules/enhanced-modals.js -------------------------------------------------------------------------------- /js/modules/forms-free.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/js/modules/forms-free.js -------------------------------------------------------------------------------- /js/modules/jquery.easing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/js/modules/jquery.easing.js -------------------------------------------------------------------------------- /js/modules/scrolling-navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/js/modules/scrolling-navbar.js -------------------------------------------------------------------------------- /js/modules/velocity.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/js/modules/velocity.min.js -------------------------------------------------------------------------------- /js/modules/waves.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/js/modules/waves.js -------------------------------------------------------------------------------- /js/modules/wow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/js/modules/wow.js -------------------------------------------------------------------------------- /js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/js/popper.min.js -------------------------------------------------------------------------------- /scss/_custom-skin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/scss/_custom-skin.scss -------------------------------------------------------------------------------- /scss/_custom-styles.scss: -------------------------------------------------------------------------------- 1 | // Your custom styles 2 | -------------------------------------------------------------------------------- /scss/_custom-variables.scss: -------------------------------------------------------------------------------- 1 | // Your custom variables -------------------------------------------------------------------------------- /scss/addons/_datatables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/scss/addons/_datatables.scss -------------------------------------------------------------------------------- /scss/core/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/scss/core/_colors.scss -------------------------------------------------------------------------------- /scss/core/_global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/scss/core/_global.scss -------------------------------------------------------------------------------- /scss/core/_helpers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/scss/core/_helpers.scss -------------------------------------------------------------------------------- /scss/core/_masks.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/scss/core/_masks.scss -------------------------------------------------------------------------------- /scss/core/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/scss/core/_mixins.scss -------------------------------------------------------------------------------- /scss/core/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/scss/core/_typography.scss -------------------------------------------------------------------------------- /scss/core/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/scss/core/_variables.scss -------------------------------------------------------------------------------- /scss/core/_waves.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/scss/core/_waves.scss -------------------------------------------------------------------------------- /scss/core/bootstrap/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/scss/core/bootstrap/_functions.scss -------------------------------------------------------------------------------- /scss/core/bootstrap/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/scss/core/bootstrap/_variables.scss -------------------------------------------------------------------------------- /scss/free/_animations-basic.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/scss/free/_animations-basic.scss -------------------------------------------------------------------------------- /scss/free/_animations-extended.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/scss/free/_animations-extended.scss -------------------------------------------------------------------------------- /scss/free/_badges.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/scss/free/_badges.scss -------------------------------------------------------------------------------- /scss/free/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/scss/free/_buttons.scss -------------------------------------------------------------------------------- /scss/free/_cards.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/scss/free/_cards.scss -------------------------------------------------------------------------------- /scss/free/_carousels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/scss/free/_carousels.scss -------------------------------------------------------------------------------- /scss/free/_depreciated.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/scss/free/_depreciated.scss -------------------------------------------------------------------------------- /scss/free/_dropdowns.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/scss/free/_dropdowns.scss -------------------------------------------------------------------------------- /scss/free/_footers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/scss/free/_footers.scss -------------------------------------------------------------------------------- /scss/free/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/scss/free/_forms.scss -------------------------------------------------------------------------------- /scss/free/_input-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/scss/free/_input-group.scss -------------------------------------------------------------------------------- /scss/free/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/scss/free/_list-group.scss -------------------------------------------------------------------------------- /scss/free/_modals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/scss/free/_modals.scss -------------------------------------------------------------------------------- /scss/free/_msc.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/scss/free/_msc.scss -------------------------------------------------------------------------------- /scss/free/_navbars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/scss/free/_navbars.scss -------------------------------------------------------------------------------- /scss/free/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/scss/free/_pagination.scss -------------------------------------------------------------------------------- /scss/free/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/scss/free/_tables.scss -------------------------------------------------------------------------------- /scss/mdb.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjerbi/Landing-page-html-bootstrap-template/HEAD/scss/mdb.scss -------------------------------------------------------------------------------- /scss/style.scss: -------------------------------------------------------------------------------- 1 | // Your custom styles --------------------------------------------------------------------------------