Skip to content

Instantly share code, notes, and snippets.

@P1N2O
Last active January 27, 2020 21:43
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save P1N2O/b2739826ec4931ab711cda3b23ced052 to your computer and use it in GitHub Desktop.
Save P1N2O/b2739826ec4931ab711cda3b23ced052 to your computer and use it in GitHub Desktop.
Core CSS/JS Lib's CDN

Core Lib's CDN

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

Index

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

A is a modern, HTML5-ready alternative to CSS resets.

<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/necolas/normalize.css/normalize.css">

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">

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/bootstrap@4.3/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/bootstrap@4.3/dist/js/bootstrap.bundle.js"></script>

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">

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>

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>

A JavaScript Typing Animation Library.

<script src="https://cdn.jsdelivr.net/gh/mattboldt/typed.js/lib/typed.js"></script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment