Skip to main content

Link 1

  • Tags:

Examples

Heading
Smaller heading

Inline text 

Example link text 

Icon font

Use in web applications, on buttons, and anywhere you need more than a few icons.

<i class="modus-icons" aria-hidden="true">link_1</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#link-1" />
</svg>

SVG code

Use when you don't want any dependency.

<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor" class="mi-connect mi-link-1" viewBox="0 0 24 24">
  <path d="M11 8.9H7c-1.71 0-3.1 1.39-3.1 3.1s1.39 3.1 3.1 3.1h4V17H7c-2.76 0-5-2.24-5-5s2.24-5 5-5h4zM17 7c2.76 0 5 2.24 5 5s-2.24 5-5 5h-4v-1.9h4c1.71 0 3.1-1.39 3.1-3.1S18.71 8.9 17 8.9h-4V7zm-1 6H8v-2h8z"/>
</svg>

SVG CSS code

Use for embedding your icons in CSS with no dependency.