This is a handy gist of most used CSS/JS Frameworks & Libraries used by me for all my projects.
- Fetch the specified / latest version directly from original GitHub repo.
- Add ".min" to any JS/CSS file to get a minified version.
- Powered by jsDeliver - A Free, Fast, Reliable & Open Source CDN
No. | Framework Library |
---|---|
01 | Normalize.css |
02 | CSS Remedy |
03 | Bootstrap |
04 | Font Awesome |
05 | Sal.js |
06 | Animate.css |
07 | WOW |
08 | Slick.js |
09 | Typed.js |
01. Normalize.css
A is a modern, HTML5-ready alternative to CSS resets.
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/necolas/normalize.css/normalize.css">
02. CSS Remedy
Start your project with a remedy for the technical debt of CSS by MozDevs.
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/mozdevs/cssremedy/remedy.css">
03. Bootstrap
The most popular HTML, CSS, and JavaScript framework for developing responsive, mobile first projects on the web.
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/twbs/[email protected]/dist/css/bootstrap.css">
<script src="https://cdn.jsdelivr.net/gh/jquery/jquery/dist/jquery.js"></script>
<script src="https://cdn.jsdelivr.net/gh/twbs/[email protected]/dist/js/bootstrap.bundle.js"></script>
04. Font Awesome
The iconic SVG, font, and CSS toolkit.
<script src="https://cdn.jsdelivr.net/gh/FortAwesome/Font-Awesome/js/all.js"></script>
05. Sal.js
A Performance focused, lightweight scroll animation library.
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/mciastek/sal/dist/sal.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/mciastek/sal/dist/sal.js">
06. Animate.css
A cross-browser library of CSS animations. As easy to use as an easy thing.
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/daneden/animate.css/animate.css">
07. WOW
Reveal Animations When You Scroll. A dear friend of Animate.css (can't live without him).
<script src="https://cdn.jsdelivr.net/gh/matthieua/WOW/dist/wow.js"></script>
08. Slick.js
A fully responsive carousel with mobile swipe gestures, desktop mouse dragging, infinite looping etc.
<script src="https://cdn.jsdelivr.net/gh/kenwheeler/slick/slick/slick.js"></script>
09. Typed.js
A JavaScript Typing Animation Library.
<script src="https://cdn.jsdelivr.net/gh/mattboldt/typed.js/lib/typed.js"></script>