Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">markup_text_active</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#markup-text-active" />
</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-markup-text-active" viewBox="0 0 24 24">
<path fill-rule="evenodd" d="M9.021 17H16v2H9.177l1.751 1.75-1.415 1.416-4.242-4.243 4.242-4.242 1.415 1.414zM16 12v5h-2v-5H5.5A1.5 1.5 0 0 1 4 10.5v-7A1.5 1.5 0 0 1 5.5 2h13A1.5 1.5 0 0 1 20 3.5v7a1.5 1.5 0 0 1-1.5 1.5z"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.