Open Iconic provides webfont stylesheets for standalone use, Bootstrap, and Foundation.
Standalone
Link the default stylesheet and use the oi class with a data-glyph attribute.
Bootstrap
Link the Bootstrap-specific stylesheet and use the oi oi-icon-name pattern.
Foundation
Link the Foundation-specific stylesheet and use the fi-icon-name pattern.
<!-- Standalone -->
<link href="/open-iconic/font/css/open-iconic.css" rel="stylesheet">
<span class="oi" data-glyph="icon-name" title="icon name" aria-hidden="true"></span>
<!-- Bootstrap -->
<link href="/open-iconic/font/css/open-iconic-bootstrap.css" rel="stylesheet">
<span class="oi oi-icon-name" title="icon name" aria-hidden="true"></span>
<!-- Foundation -->
<link href="/open-iconic/font/css/open-iconic-foundation.css" rel="stylesheet">
<span class="fi-icon-name" title="icon name" aria-hidden="true"></span>