Font Awesome i css - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Font awesome

Description

Font Awesome i css

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://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css"> 
  <style id="compiled-css" type="text/css">
.cart:before {<!--from   www .j a va 2 s  . c  om-->
   font-family:FontAwesome;
   content:"\f218";
}
</style> 
 </head> 
 <body> 
  <p> <span class="cart"></span> </p>  
 </body>
</html>

Related Tutorials