Coder Social home page Coder Social logo

font-awesome-lists's Introduction

font-awesome-lists

In this tutorial, Solodev will show some common implementations for you to build lists using [Font Awesome] (http://fontawesome.io/) Icons and Bootstrap in your next web design project. Lists are prominent and diverse. One website may need to list their products using visuals while another lists their feature set using checkmarks.

Some applications use checkboxes so the user can mark off what they have completed and what is left to be done. Font Awesome can accommodate any kind of list that needs to be built for your website. In this tutorial, Solodev will show some common implementations of using Font Awesome and Bootstrap to build lists.

Tutorial

For detailed instructions, visit Solodev's Building Lists with Font Awesome and Bootstrap article.

Demo

Try out a working example on JSFiddle.

HTML

The various list examples contain the following basic HTML markup.

device-type.html

<div class="list-group">
   <a href="#" class="list-group-item active">
   Device Type
   </a>
   <a href="#" class="list-group-item"><i class="fa fa-check" aria-hidden="true"></i>
   Desktop</a>
   <a href="#" class="list-group-item"><i class="fa fa-check" aria-hidden="true"></i>
   Mobile</a>
   <a href="#" class="list-group-item"><i class="fa fa-check" aria-hidden="true"></i>
   Tablet</a>
</div>

operating-system.html

<div class="list-group">
   <a href="#" class="list-group-item active">
   Operating System
   </a>
   <a href="#" class="list-group-item"><i class="fa fa-check-circle" aria-hidden="true"></i>
   Windows</a>
   <a href="#" class="list-group-item"><i class="fa fa-check-circle" aria-hidden="true"></i>
   OS X</a>
   <a href="#" class="list-group-item"><i class="fa fa-check-circle" aria-hidden="true"></i>
   Linux</a>
</div>

to-do.html

<div class="list-group">
   <a href="#" class="list-group-item active">
   To-Do List
   </a>
   <a href="#" class="list-group-item"><i class="fa fa-check-square-o" aria-hidden="true"></i>
   Go Christmas Shopping</a>
   <a href="#" class="list-group-item"><i class="fa fa-check-square-o" aria-hidden="true"></i>
   Pick up movie tickets from theatre</a>
   <a href="#" class="list-group-item"><i class="fa fa-square-o" aria-hidden="true"></i>
   Write Christmas Cards</a>
   <a href="#" class="list-group-item"><i class="fa fa-check-square-o" aria-hidden="true"></i>
   Pick up Jon from Airport</a>
</div>

features.html

<div class="list-group">
   <a href="#" class="list-group-item active">
   Features
   </a>
   <a href="#" class="list-group-item"><i class="fa fa-check-square" aria-hidden="true"></i>
   CRM - Sales Cloud</a>
   <a href="#" class="list-group-item"><i class="fa fa-check-square" aria-hidden="true"></i>
   E-Commerce</a>
     <a href="#" class="list-group-item"><i class="fa fa-check-square" aria-hidden="true"></i>
   CMS - Website Builder</a>
</div>

CSS

All necessary CSS is in lists.css

External Includes

This tutorial contains the following third party resources.

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="lists.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>

font-awesome-lists's People

Contributors

mattmclaren avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.