Last active
December 6, 2016 01:30
-
-
Save beijaflor/c7a8d496f3a533855dce1003dad6e61d to your computer and use it in GitHub Desktop.
Font-Awesomeでアクセシビリティを確保しながらウェブフォントを活用する ref: http://qiita.com/beijaflor/items/88395c52804a06dbaccc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<a href="path/to/shopping/cart"> | |
<i class="fa fa-shopping-cart" title="View 3 items in your shopping cart" aria-hidden="true"></i> | |
<span class="sr-only">View 3 items in your shopping cart</span> | |
</a> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<a href="#navigation-main"> | |
<i class="fa fa-bars" title="Skip to main navigation" aria-hidden="true"></i> | |
<span class="sr-only">Skip to main navigation</span> | |
</a> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<a href="https://github.com/FortAwesome/Font-Awesome"><i class="fa fa-github" aria-hidden="true"></i> View this project's code on Github</a> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h1 class="logo"> | |
<i class="fa fa-pied-piper" aria-hidden="true"></i> | |
Pied Piper, A Middle-Out Compression Solution Making Data Storage Problems Smaller | |
</h1> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<dl> | |
<dt> | |
<i class="fa fa-car" aria-hidden="true"></i> | |
<span class="sr-only">Time to destination by car:</span> | |
</dt> | |
<dd>4 minutes</dd> | |
<dt> | |
<i class="fa fa-bicycle" aria-hidden="true"></i> | |
<span class="sr-only">Time to destination by bike:</span> | |
</dt> | |
<dd>12 minutes</dd> | |
</dl> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<a class="btn btn-danger" href="path/to/settings"> | |
<i class="fa fa-trash-o" title="Delete" aria-hidden="true"></i> | |
<span class="sr-only">Delete</span> | |
</a> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<i class="fa fa-hourglass" aria-hidden="true"></i> | |
<span class="sr-only">60 minutes remains in your exam</span> | |
<i class="fa fa-hourglass-half" aria-hidden="true"></i> | |
<span class="sr-only">30 minutes remains in your exam</span> | |
<i class="fa fa-hourglass-end" aria-hidden="true"></i> | |
<span class="sr-only">0 minutes remains in your exam</span> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<i class="fa fa-fighter-jet" aria-hidden="true"></i> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment