Font-awesome class with multiple different icons - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Font awesome

Description

Font-awesome class with multiple different icons

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
  <link rel="stylesheet" type="text/css" href="https://netdna.bootstrapcdn.com/font-awesome/2.0/css/font-awesome.css"> 
  <style id="compiled-css" type="text/css">
.class:after {<!--  w  ww  .  j  av a2  s.com-->
   content:"\f6\f6\f6";
   font-family:FontAwesome;
}
</style> 
 </head> 
 <body> 
  <span class="class"></span>  
 </body>
</html>

Related Tutorials