About the HtML5 Footer Tag

I want to add three things to the next section of the footer. What tags should they be placed in?

  • Navigation menu.
  • Email
  • Copyright (only a small line "Copyright © 2011 All Rights")
<footer>
      <address>
      Website:<br />
      <a href="www.example.com">Website
      </address>
    </footer>

PS. I ask if I don’t know if these things should be inside a tag <address>or tag <p>or something else.

+3
source share
3 answers

1. Navigation menu.

To do this, create a tag nav. You can see an example here .

2. Email.

For email you must put in an address tag. You can view the details here .

3. Copyright (only a small line "Copyright © 2011 All Rights")

(<p></p>). W3C HTML5: 4.4.9 footer. small , p.

+8

small, , , p, .

, , ,

[ address ! , Alerty , ! a span div.]

+2

, ( ) .

The current version of the HTML5 specification says: "An address element represents the contact information for its closest ancestor element or body element element."

http://www.w3.org/TR/2011/WD-html5-20110525/sections.html#the-address-element

0
source

All Articles