inline-icons.html 674 B

12345678910111213141516171819
  1. <section id="inline-icons">
  2. <h2 class="page-header">Inline Icons</h2>
  3. <div class="row">
  4. <div class="span3">
  5. <p>Place Font Awesome icons just about anywhere with the <code>&lt;i&gt;</code> tag.</p>
  6. </div>
  7. <div class="span9">
  8. <div class="well well-transparent">
  9. <div style="font-size: 24px; line-height: 1.5em;">
  10. <i class="icon-camera-retro"></i> icon-camera-retro
  11. </div>
  12. </div>
  13. {% highlight html %}
  14. <i class="icon-camera-retro"></i> icon-camera-retro
  15. {% endhighlight %}
  16. <div class="alert alert-info"><i class="icon-info-sign"></i> Icon classes are echoed via CSS :before.</div>
  17. </div>
  18. </div>
  19. </section>