2013-05-02 20:12:33 -04:00
---
layout: base
2013-05-09 22:50:17 -04:00
title_suffix: Font Awesome Icons
2013-05-08 23:15:29 -04:00
relative_path: ../../
2013-05-02 20:12:33 -04:00
---
2013-05-02 23:16:41 -04:00
< div class = "jumbotron jumbotron-icon" >
< div class = "container" >
< div class = "info-icons" >
2016-04-01 09:45:15 -04:00
< i class = "fa fa-{{ page.icon.id }} fa-6 aria-hidden=" true " " > < / i >
< span class = "sr-only" > Example of {{ page.icon.id }} at 6x< / span >
2013-10-06 12:36:59 -04:00
< span class = "hide-xs" >
2016-04-01 09:45:15 -04:00
< i class = "fa fa-{{ page.icon.id }} fa-5 aria-hidden=" true " " > < / i >
< span class = "sr-only" > Example of {{ page.icon.id }} at 5x< / span >
< span class = "hide-sm" >
< i class = "fa fa-{{ page.icon.id }} fa-4 aria-hidden=" true " " > < / i >
< span class = "sr-only" > Example of {{ page.icon.id }} at 4x< / span >
< / span >
< i class = "fa fa-{{ page.icon.id }} fa-3 aria-hidden=" true " " > < / i >
< span class = "sr-only" > Example of {{ page.icon.id }} at 3x< / span >
< i class = "fa fa-{{ page.icon.id }} fa-2 aria-hidden=" true " " > < / i >
< span class = "sr-only" > Example of {{ page.icon.id }} at 2x< / span >
2013-06-06 15:18:43 -02:30
< / span >
2016-04-01 09:45:15 -04:00
< i class = "fa fa-{{ page.icon.id }} fa-1" aria-hidden = "true" > < / i >
< span class = "sr-only" > Example of {{ page.icon.id }}< / span >
2013-05-02 23:16:41 -04:00
< / div >
< h1 class = "info-class" >
2013-10-20 19:12:13 -04:00
fa-{{ page.icon.id }}
2013-05-02 23:16:41 -04:00
< small >
2016-04-01 09:45:15 -04:00
< i class = "fa fa-{{ page.icon.id }}" aria-hidden = "true" > < / i > ·
2013-05-17 08:35:23 -05:00
Unicode: < span class = "upper" > {{ page.icon.unicode }}< / span > ·
Created: v{{ page.icon.created }} ·
2013-05-02 23:16:41 -04:00
Categories:
2013-05-17 08:35:23 -05:00
{% for category in page.icon.categories %}
2013-05-02 23:16:41 -04:00
{{ category }}{% unless forloop.last %},{% endunless %}
{% endfor %}
2013-06-06 15:22:06 -02:30
{% assign icon_alias_count = page.icon.aliases | size %}
{% if icon_alias_count > 0 %}
2013-05-03 16:00:59 -04:00
· Aliases:
2013-05-17 08:35:23 -05:00
{% for alias in page.icon.aliases %}
2013-10-20 19:12:13 -04:00
fa-{{ alias }}{% unless forloop.last %},{% endunless %}
2013-05-02 23:16:41 -04:00
{% endfor %}
{% endif %}
2015-01-20 12:56:00 -05:00
{% if page.icon.url %}· < a target = "_blank" href = "http://{{ page.icon.url }}" > {{ page.icon.url }}< i class = "fa fa-external-link-square margin-left-sm" > < / i > < / a > {% endif %}
2013-05-02 23:16:41 -04:00
< / small >
< / h1 >
< / div >
< / div >
2013-05-02 20:12:33 -04:00
< div class = "container" >
< section >
2013-10-05 15:40:57 -04:00
< div class = "row" >
2013-10-06 12:36:59 -04:00
< div class = "col-md-9 col-sm-9" >
2013-07-15 10:25:57 +02:00
< p > After you get < a href = "{{ page.relative_path }}get-started/" > up and running< / a > , you can place Font Awesome icons just about anywhere with the < code > < i> < / code > tag:< / p >
2013-05-02 23:16:41 -04:00
< div class = "well well-transparent" >
< div style = "font-size: 24px; line-height: 1.5em;" >
2016-04-01 09:45:15 -04:00
< i class = "fa fa-{{ page.icon.id }}" aria-hidden = "true" > < / i > < span class = "sr-only" > Example of {{ page.icon.id }}< / span > fa-{{ page.icon.id }}
2013-05-02 23:16:41 -04:00
< / div >
< / div >
2013-05-23 13:14:14 -04:00
{% highlight html %}
2016-04-01 09:45:15 -04:00
< i class = "fa fa-{{ page.icon.id }}" aria-hidden = "true" > < / i >
2013-05-02 23:16:41 -04:00
{% endhighlight %}
2016-04-01 09:45:15 -04:00
< p class = "margin-bottom-lg" >
< small class = "text-muted" > Note: to improve < a href = "{{ page.relative_path }}accessibility/" > web accessibility< / a > , we recommend using < strong > aria-hidden="true"< / strong > to hide icons used purely for decoration.< / small >
< / p >
< div class = "lead" >
< i class = "fa fa-info-circle" aria-hidden " true " > < / i > Looking for more? Check out the < a href = "{{ page.relative_path }}examples/" > examples< / a > .
< / div >
2013-05-02 23:16:41 -04:00
< / div >
2013-10-06 12:36:59 -04:00
< div class = "col-md-3 col-sm-3" >
2014-06-17 12:01:57 -04:00
< div class = "vertical-ad" > {% include ads/fusion.html %}< / div >
2013-05-02 23:16:41 -04:00
< / div >
< / div >
2013-05-02 20:12:33 -04:00
< / section >
< / div >