footer tag in html
The <footer> tag defines a footer for a document or section.
A <footer> element should contain information about its containing element.
A <footer> element typically contains:
- authorship information
- copyright information
- contact information
- sitemap
- back to top links
- related documents
You can have several <footer> elements in one document.
<!DOCTYPE html>
<html>
<body>
<footer>
<p>Posted by: Hege Refsnes</p>
<p>Contact information: <a href="mailto:pavantekula@gmail.com.com">send a mail</a>.</p>
</footer>
</body>
</html>
Output:
Posted by: Hege Refsnes
Contact information: send a mail.
Contact information: send a mail.
Comments
Post a Comment