Skip to content

Commit 8aed10d

Browse files
author
Oliver Stapleton
authored
Merge pull request #27 from spikeheap/master
Add screen-reader alternative text for FontAwesome icons
2 parents 3b030ae + bb14a52 commit 8aed10d

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

_includes/footer.html

+4-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,10 @@ <h4>Social Links</h4>
1111
<div class="hline-w"></div>
1212
<p>
1313
{% for network in site.social %}
14-
<a href="{{ network.url }}" class="btn-social btn-outline"><i class="fa fa-{{ network.title }}"></i></a>
14+
<a href="{{ network.url }}" class="btn-social btn-outline">
15+
<i class="fa fa-{{ network.title }}" aria-hidden="true"></i>
16+
<span class="sr-only">{{network.title}}</span>
17+
</a>
1518
{% endfor %}
1619
</p>
1720
</div>

index.html

+6-3
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,22 @@
88
<div class="container">
99
<div class="row centered">
1010
<div class="col-md-4">
11-
<i class="fa fa-heart-o"></i>
11+
<i class="fa fa-heart-o" aria-hidden="true"></i>
12+
<span class="sr-only">An image of a love-heart</span>
1213
<h4>Handsomely Crafted</h4>
1314
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>
1415
<p><br/><a href="#" class="btn btn-theme">More Info</a></p>
1516
</div>
1617
<div class="col-md-4">
17-
<i class="fa fa-flask"></i>
18+
<i class="fa fa-flask" aria-hidden="true"></i>
19+
<span class="sr-only">An image of a laboratory flask</span>
1820
<h4>Retina Ready</h4>
1921
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>
2022
<p><br/><a href="#" class="btn btn-theme">More Info</a></p>
2123
</div>
2224
<div class="col-md-4">
23-
<i class="fa fa-trophy"></i>
25+
<i class="fa fa-trophy" aria-hidden="true"></i>
26+
<span class="sr-only">An image of a trophy</span>
2427
<h4>Quality Theme</h4>
2528
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>
2629
<p><br/><a href="#" class="btn btn-theme">More Info</a></p>

0 commit comments

Comments
 (0)