I have a list of articles. It consists of the title of the article and description, and the number of likes is also shown.
<div> <div><a href="Ссылка на статью">Называние статьи</a></div> <div>Описание статьи ( обычно несколько строк )</div> <div>5 лайков</div> </div>
What is the best way to semantically form this block? Is it either wrapped in <article>
or in <section>
? I think I should put the link with the title in <header>
and the number of likes in <footer>
.