HTML 5 <footer> tag
The <footer> tag is used for defining the
footer of an HTML document. Footers usually contain information such as the
author of the document, copyright information, links to terms of use, privacy
policy, etc.
If you use the footer to insert contact information, use the
address element inside the footer element. Contact information within a <footer>
tag should be marked up using the <address> tag.
Example
<!DOCTYPE
HTML>
<html>
<head></head>
<body>
<form
style="height:
202px" >
<h3>MCN
Solutions Pvt Ltd </h3>
<b><p>It
is a software company</p></b>
<article>MCN
Solutions is a rapidly growing IT company focused on delivering the best and
most cost-effective solutions for
Software Development.</article>
</form>
<footer>
<ul>
<li
>
<a
href="">About MCN
Solutions</a>||
<a
href="">Privacy</a>
||
<a
href="">Contact</a>
||
<a
href="">Author</a>
||<a
href="">Copyright</a></li>
</ul>
</footer>
</body>
</html>
Output

HTML 5 <form> tag
The <form> tag is used for declaring a form.
The <form> tag is used in conjunction with form-associated elements. To create a
form, you can nest form-associated elements inside the opening/closing <form>
tags.
Example
<!DOCTYPE
HTML>
<html>
<body>
<form
action="form_action.asp">
First name: <input
type="text"
name="fname"
/><br
/><br
/>
Last name:<input
type="text"
name="lname"
/><br
/><br
/>
Address: <input
type="text"
name="add"
/><br
/><br
/>
Contact No: <input
type="integer"
name="Contact No"
/><br
/><br
/>
<input
type="submit"
value="Submit"
/>
</form>
</body>
</html>
Output

The <footer> and <form> tag both supports the
Standard and Event Attributes in HTML 5.