The only way to do that is to open footer.php and replace all the php lines with html, except the line containing wp_footer().
I want the button that take us to top from the footer.
Thanks it worked,
What if I just want to insert some html codes to show links for some important pages [like: contact us, about us other pages] without deleting the other stuffs available there!!
You know I found this is the only thing not available in your theme [to show those important pages as they are very important]. Hope to have them in upcoming versions.
in the default footer.php you can find:
<strong class="copyright"><?php echo esc_html( $copyright_text ); ?></strong>
and add your links in there. example:
<strong class="copyright">Copyright Mysite. <a href="link to page">About</a> | <a href="link to page">Contact</a> | <a href="link to page">Something</a> | <a href="link to page">Something</a></strong>