Block level links and images as links

Creating larger clickable areas and using images as links

view_quilt Block level links
touch_app

Wrap block elements like divs or sections in anchor tags

aspect_ratio

Creates larger clickable areas for better UX

<a href="https://example.com">
  <div class="card">
    <h3>Card Title</h3>
    <p>Card content</p>
  </div>
</a>
image Images as links
link

Wrap img tags inside anchor tags

border_color

Images get a blue border by default when linked

<a href="https://example.com">
  <img src="logo.png" alt="Company logo">
</a>
HTML code showing an image wrapped in a link
visibility Visual Example
image
Clickable logo image linking to homepage