to learn HTML more in depth I'm building the website of a famous fashion brand, trying to emulate and build all the functions that I see with the HTML knowledge that I have.
I'm coding a part of the website in which a whole <div> is clickable, including a button, some text and an image.
The problem is that all the text that is included in this div (that is, in its turn, included in an Anchor element), becomes a link.
How do I make the text appear normal?
This is what I've tried so far.
<section class="twoModels">
<a href="#">
<div class="first-model">
<div class="first-model-photo">
<img src="/img/first-model.jpg" alt="Our Coats" title="Our coats" width="375" loading="lazy">
</div>
<div class="first-model-text">
<h3><!--This is the part of text I want to look normal-->Dress Code: Maglieria</h3>
</div>
<div class="first-model-cta">
<button>Scopri di più</button>
</div>
</div>
</a>
</section>