The footer component speaks to a footer for its closest precursor segmenting substance or separating root component. A footer commonly holds data about its area, for example, who thought of it, connections to related records, copyright information, and so forth.

<footer> .... </footer>

The footer component offers the opportunity to characterize website pages providing for them the right semantic imprint up that they merit however its essential to utilize these recently discovered labels as they were planned for. We should not escape and abuse this tag like we have done with tables and divs.

Here is the Syntax for FOOTER Element

Supported Browser
html5 tutorial html5 tutorial html5 tutorial html5 tutorial html5 tutorial


<footer> Some descriptions here </footer>

Below is complete syntax along with example


<!DOCTYPE html>

<html>
	
    <head>
    	 <title>Title name will go here</title>
    </head>
    
    <body>
		
		<footer>

			<p>Copyright © 2012 html5andcss3.org</p>
            
		</footer>
        
    </body>
    
</html>

Download