Block-title in row

Is it possible to place a block title as a column so I can add links and other things to the right of the block title?

I essentially want a block-title and a link horizontally.
Picture below of what I’m trying to achieve.

I have tried:

<div class="block">
  <div class="row">
    <div class="col block-title">Introduction</div>
    <a class="col link" href="#">See All</a>
  </div>
 </div>

But this will not work.
What do your recommend?

10%20am

Just put it inside block title:

<div class="block-title display-flex justify-content-space-between">
  <span>Introduction</span>
  <a class="link" href="#">See All</a>
</div>

awesome thanks again!