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> .

  • Well, somehow it is not beautiful to ask a question about the semantics about each of its internal pages. Well, in the previous question I explained the general meaning. and then you should read New tags and Advanced semantics and accessibility , and think subjectively - lexxl
  • I read the articles, and there they write differently about the same semantic tags. It is this question that is different than the one I do not understand for small pieces of information that are purely reference, that it is better to use an article or section. But I think in part you are right, but nevertheless the questions are different. - Dmitry Polyanin

0