Book Image

OpenCart Theme and Module Development

By : Rupak Nepali
Book Image

OpenCart Theme and Module Development

By: Rupak Nepali

Overview of this book

Table of Contents (13 chapters)
OpenCart Theme and Module Development
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Font Awesome, an iconic font


Font Awesome CSS is an iconic font and CSS toolkit that provides scalable vector icons. It is pictographic, as it contains 519 icons that are controlled by CSS, as well as responsive. You can get more details on Font Awesome from http://fortawesome.github.io/Font-Awesome/.

We can set up Font Awesome easily by adding two lines to our website, or become a pro and customize it ourselves. Font Awesome supports Bootstrap 3 as well.

We get fewer JavaScript compatibility concerns with Font Awesome because it doesn't require any JavaScript. All the things are controlled by CSS, and are vectors, by which icons look awesome and gorgeous on high resolution or every device size.

Setting up Font Awesome

The easiest way to set up Font Awesome is by using the Bootstrap CDN. Or you can download the default CSS and reference the location of the CSS.

Using BootstrapCDN by MaxCDN

You can add Font Awesome using Bootstrap CDN a line of code, as shown in the following example. There's no...