Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">project</i>
SVG sprite
Use for static sites when you only need a few icons.
<svg class="mi" width="1em" height="1em" fill="currentColor">
<use xlink:href="/connect-icons.svg#project" />
</svg>
SVG code
Use when you don't want any dependency.
info_outlined
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor" class="mi-connect mi-project" viewBox="0 0 24 24">
<path d="M12 7h10v14H2V3h10zM4 19h2v-2H4zm4 0h2v-2H8zm4-8h2v2h-2v2h2v2h-2v2h8V9h-8zm6 4v2h-2v-2zM4 15h2v-2H4zm4 0h2v-2H8zm10-2h-2v-2h2zM4 11h2V9H4zm4 0h2V9H8zM4 7h2V5H4zm4 0h2V5H8z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.