2013-05-03 08:12:33 +08:00
---
layout: base
2013-05-10 10:50:17 +08:00
title_suffix: Font Awesome Icons
2013-05-09 11:15:29 +08:00
relative_path: ../../
2013-05-03 08:12:33 +08:00
---
2013-05-03 11:16:41 +08:00
< div class = "jumbotron jumbotron-icon" >
< div class = "container" >
< div class = "info-icons" >
2016-04-01 21:45:15 +08: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-07 00:36:59 +08:00
< span class = "hide-xs" >
2016-04-01 21:45:15 +08: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-07 01:48:43 +08:00
< / span >
2016-04-01 21:45:15 +08: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-03 11:16:41 +08:00
< / div >
< h1 class = "info-class" >
2013-10-21 07:12:13 +08:00
fa-{{ page.icon.id }}
2013-05-03 11:16:41 +08:00
< small >
2016-04-01 21:45:15 +08:00
< i class = "fa fa-{{ page.icon.id }}" aria-hidden = "true" > < / i > ·
2013-05-17 21:35:23 +08:00
Unicode: < span class = "upper" > {{ page.icon.unicode }}< / span > ·
Created: v{{ page.icon.created }} ·
2013-05-03 11:16:41 +08:00
Categories:
2013-05-17 21:35:23 +08:00
{% for category in page.icon.categories %}
2013-05-03 11:16:41 +08:00
{{ category }}{% unless forloop.last %},{% endunless %}
{% endfor %}
2013-06-07 01:52:06 +08:00
{% assign icon_alias_count = page.icon.aliases | size %}
{% if icon_alias_count > 0 %}
2013-05-04 04:00:59 +08:00
· Aliases:
2013-05-17 21:35:23 +08:00
{% for alias in page.icon.aliases %}
2013-10-21 07:12:13 +08:00
fa-{{ alias }}{% unless forloop.last %},{% endunless %}
2013-05-03 11:16:41 +08:00
{% endfor %}
{% endif %}
2016-04-07 00:45:20 +08:00
{% if page.icon.url %}· < a target = "_blank" rel = "nofollow" href = "http://{{ page.icon.url }}" > {{ page.icon.url }}< i class = "fa fa-external-link-square margin-left-sm" > < / i > < / a > {% endif %}
2013-05-03 11:16:41 +08:00
< / small >
< / h1 >
< / div >
< / div >
2013-05-03 08:12:33 +08:00
< div class = "container" >
< section >
2013-10-06 03:40:57 +08:00
< div class = "row" >
2013-10-07 00:36:59 +08:00
< div class = "col-md-9 col-sm-9" >
2013-07-15 16:25:57 +08: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-03 11:16:41 +08:00
< div class = "well well-transparent" >
< div style = "font-size: 24px; line-height: 1.5em;" >
2016-04-01 21:45:15 +08: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-03 11:16:41 +08:00
< / div >
< / div >
2013-05-24 01:14:14 +08:00
{% highlight html %}
2016-04-01 21:45:15 +08:00
< i class = "fa fa-{{ page.icon.id }}" aria-hidden = "true" > < / i >
2013-05-03 11:16:41 +08:00
{% endhighlight %}
2016-04-01 21:45:15 +08: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-03 11:16:41 +08:00
< / div >
2013-10-07 00:36:59 +08:00
< div class = "col-md-3 col-sm-3" >
2014-06-18 00:01:57 +08:00
< div class = "vertical-ad" > {% include ads/fusion.html %}< / div >
2013-05-03 11:16:41 +08:00
< / div >
< / div >
2013-05-03 08:12:33 +08:00
< / section >
< / div >