Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

CSS Framework Basics Build a Website with Bootstrap Adding Icon Fonts with IcoMoon

To make this 20x easier...

After you download the fonts and link the icomoon css to your webpage. There is a section in the generated css that looks like this:

.icon-apple:before {
    content: "\f179";
}

.icon-android:before {
    content: "\f17b";
}

Simply put the icon-apple class in the iOS button element in the index.html and the icon-android class in the android button element in the index.html. So it looks like this:

<a class="btn btn-default btn-lg icon-apple" href="#">iOS</a>
<a class="btn btn-default btn-lg icon-android" href="#">Android</a>

1 Answer