├── .gitignore ├── includes ├── css │ ├── bootstrap.min.css │ ├── prettify.css │ └── styles.css ├── images │ ├── box-model-quirks.png │ ├── box-model-standard.png │ ├── float-or-position.png │ └── link_16.png └── js │ ├── bootstrap-scrollspy.js │ ├── interact.js │ ├── jquery.min.js │ ├── jquery.scrollTo-min.js │ ├── lang-css.js │ └── prettify.js └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taitems/Front-End-Development-Guidelines/HEAD/.gitignore -------------------------------------------------------------------------------- /includes/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taitems/Front-End-Development-Guidelines/HEAD/includes/css/bootstrap.min.css -------------------------------------------------------------------------------- /includes/css/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taitems/Front-End-Development-Guidelines/HEAD/includes/css/prettify.css -------------------------------------------------------------------------------- /includes/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taitems/Front-End-Development-Guidelines/HEAD/includes/css/styles.css -------------------------------------------------------------------------------- /includes/images/box-model-quirks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taitems/Front-End-Development-Guidelines/HEAD/includes/images/box-model-quirks.png -------------------------------------------------------------------------------- /includes/images/box-model-standard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taitems/Front-End-Development-Guidelines/HEAD/includes/images/box-model-standard.png -------------------------------------------------------------------------------- /includes/images/float-or-position.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taitems/Front-End-Development-Guidelines/HEAD/includes/images/float-or-position.png -------------------------------------------------------------------------------- /includes/images/link_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taitems/Front-End-Development-Guidelines/HEAD/includes/images/link_16.png -------------------------------------------------------------------------------- /includes/js/bootstrap-scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taitems/Front-End-Development-Guidelines/HEAD/includes/js/bootstrap-scrollspy.js -------------------------------------------------------------------------------- /includes/js/interact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taitems/Front-End-Development-Guidelines/HEAD/includes/js/interact.js -------------------------------------------------------------------------------- /includes/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taitems/Front-End-Development-Guidelines/HEAD/includes/js/jquery.min.js -------------------------------------------------------------------------------- /includes/js/jquery.scrollTo-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taitems/Front-End-Development-Guidelines/HEAD/includes/js/jquery.scrollTo-min.js -------------------------------------------------------------------------------- /includes/js/lang-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taitems/Front-End-Development-Guidelines/HEAD/includes/js/lang-css.js -------------------------------------------------------------------------------- /includes/js/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taitems/Front-End-Development-Guidelines/HEAD/includes/js/prettify.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taitems/Front-End-Development-Guidelines/HEAD/index.html --------------------------------------------------------------------------------