Heading/"boxes" as URL

Hi alltogether,

I’m new to Kirby and excited about it.
My first question is about headings. I use a landing page with some descriptions of my services in a kind of boxes. I use the theme “Landing”.
Ho can I convert Headlines to URL, or how can I wrap such a box, that the box behave like a URL. See the screenshot, whats a box for me.
Here you find the website at first stage of development: https://empassionte.life

Thanks for any suggestions
Andreas

You can either put the link in the headline

<h1><a href="<= page('somepage')->url() ?>"><?= p page('somepage')->title() ?></a>

or even around the whole block

<div class="col-md-4">
  <a href="<= page('somepage')->url() ?>
    <div class="pt-3 pb-4">
      <img src="https://empassionate.life/content/1-home/2-angebot/teamwork.svg" class="feature-img mb-4" alt="">
      <h3 class="h5 mb-3">Teamwork</h3>
      <p>Selbstführung in Teams.</p>               
   </div>
  </a>
</div>

Check out this article for more information how to design accessible cards and the pros and cons of different approaches:

Great!. Thank you for your super fast reply :grinning: It works.