Font awesome icons - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Font awesome

Description

Font awesome 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://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css"> 
 </head> <!--from  w  w w.jav a  2s. com-->
 <body> 
  <i class="fa fa-camera-retro fa-5x"></i>Lorem i 
  <i class="fa fa-remove fa-2x" style="color: red;"></i>  
 </body>
</html>

Related Tutorials