2013년 1월 21일 월요일

html5 author and copyright information

html5 author and copyright information



The HTML <footer> tag is used for defining the footer of an HTML document or section.
Footers usually contain information such as the author of the document, copyright information, links to terms of use, privacy policy, etc.
Contact information within a <footer> tag should be marked up using the <address> tag
Although footers are typically located at the bottom of a document, this is not required (although it cannot be placed within a <header> or another <footer> element, and it cannot contain a <header> element).
A document/section can have more than one footer.
The <footer> tag was introduced in HTML 5.



<html>
<head></head>
<body>
<header>
<h1>Talking Dogs</h1>
<b><p>Humans aren't the only talkers!</p></b>
</header>
<article>
<p>Ever encountered a talking dog? I have.</p>
<p>It all happened one day as I was walking down the street...</p>
</article>
<footer>
© 2009 Woofer Dog Corporation
</footer>
</body>
</html>



The footer element represents a footer of a section, typically containing information such as who wrote it, links to related documents, and copyright notices.
Start tag:
 
required
 
End tag:
 
required
Categories:
Contained By:
Content Model:
Attributes
  • Global attributes

댓글 없음: