C
C
Cat Scientist2016-02-25 13:12:35
HTML
Cat Scientist, 2016-02-25 13:12:35

How to semantically correctly put the address tag and copyright inside the footer?

<footer>
    <address>
        <h1>Контакты</h1>
        <ul>...</ul>
    </address>
    <WHAT_A_TAG?>
        <p>&copy; Вася Пупкин</p>
        <p>И ещё чьи-то права</p>
    </WHAT_A_TAG?>
</footer>

<WHAT_A_TAG?>div? section? ..?

Answer the question

In order to leave comments, you need to log in

2 answer(s)
N
nkorobkov, 2016-02-25
@eruditecat

div

S
Sergey Suntsev, 2016-02-25
@GreyCrew

<section>
  <footer>
    <address>
      <h1>Контакты</h1>
      <ul>...</ul>
    </address>
    <p>&copy; Вася Пупкин</p>
    <p>И ещё чьи-то права</p>
  </footer>
</section>

So it will be semantically correct, for convenience, paragraphs can be placed in a div.
more details here: frontender.info/the-art-of-html-semantics-pt1

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question