address
Home

address

address

De <address> tag bepaalt de contact informatie voor de auteur/eigenaar van een document of van een artikel.

Als het <address> element in een <body> element staat stelt het de contactinformatie voor een webpagina voor.

Als het <address> element in een <article> element staat, stelt het de contactinformatie voor dat artikel voor.

The address element provides contact information for a document or part of a document. Information provided by address may include the names of the document’s maintainers, links to the maintainers’ Web pages, e-mail addresses for feedback, postal addresses, phone numbers, and so on. The address element is not appropriate for all postal and e-mail addresses; it should be reserved for providing such information about the contact people for the document.

De tekst in het <address> element staat meestal in schuinschrift. De meeste browser voegen een lege lijn toe voor en na het <address> element.

We voegen de naam van de samensteller toe aan de bloemlezing over Marsman. Dat wil zeggen dat het <address> element staat in het <article> element.

</article>
    <footer>
        <address>
            Samengesteld door Jef Inghelbrecht
        </address>
    </footer>
</article>

En in de footer van de webpagina plaatsen we de verantwoordelijke van de website:

</body>
  <article>
  ...
  </article>
  <footer>
    <p>concept & design - Modern Ways 2012-2016</p>
    <div>
        <h3>Contact</h3>
        <address>Modern Ways</address>
    </div>
  </footer>
</body>

JI

2017-02-21 21:12:39