basic entire html page boiler Plate with <footer>
<!Doctype Html>
<Html>
<Head>
<Title> Creating a footer using HTML </Title>
</Head>
<Body>
<header>
<h1> SOME TEXT </h1>
<p> SOME TEXT </p>
</header>
<footer>
The Text which we want to insert in footer. usually @Copyright Author ect ...
</footer>
/* NOTE ! dont forget to close tag </footer>*/ :
</Body>
</Html>