Stacking icons with font awesome icons

An example of stacking icons with font awesome icons.
<!DOCTYPE html>
<html>
<head>
    
<link rel="stylesheet" href="css/font-awesome.min.css">
    
</head>
<body>

Stacked icons - 
<span class="fa-stack fa-lg">
  <i class="fa fa-circle fa-stack-2x"></i>
  <i class="fa fa-flag fa-stack-1x fa-inverse"></i>
</span>

</body>
</html>

Responses

0 Replies