FontAwesome icons aligned - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Font awesome

Description

FontAwesome icons aligned

Demo Code

ResultView the demo in separate window

<html lang="en">
 <head> 
  <title>Lorem ipsum</title> 
  <link href="https://cdnjs.cloudflare.com/ajax/libs/foundicons/3.0.0/foundation-icons.css" rel="stylesheet"> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css"> 
  <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"> 
  <style>
body {<!--from w w w  .j  av  a2 s.com-->
   padding:9px;
   text-align:center;
}
</style> 
 </head> 
 <body translate="no"> 
  <a href="" title="move up"> <i class="fa fa-2x fa-sort-asc"></i> </a> 
  <a href="" title="move down"> <i class="fa fa-2x fa-sort-desc"></i> </a> 
  <a href=""> <i class="fa fa-2x fa-snowflake-o"></i> </a> 
  <a href=""> <i class="fa fa-2x fa-soccer-ball-o"></i> </a>  
 </body>
</html>

Related Tutorials