Icon font
Use in web applications, on buttons, and anywhere you need more than a few icons.
<i class="modus-icons" aria-hidden="true">no_entry</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="/transportation-icons.svg#no-entry" />
</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-solid mi-no-entry" viewBox="0 0 24 24">
<path d="M12 2a10 10 0 1 0 10 10A10.03 10.03 0 0 0 12 2M4 12a8.024 8.024 0 0 1 8-8 7.48 7.48 0 0 1 4.9 1.7L5.7 16.9A7.48 7.48 0 0 1 4 12m8 8a7.48 7.48 0 0 1-4.9-1.7L18.3 7.1A7.48 7.48 0 0 1 20 12a8.024 8.024 0 0 1-8 8"/>
</svg>
SVG CSS code
Use for embedding your icons in CSS with no dependency.