I have a web page and I am trying to move a link element "a" into an existing "div". The generated code would be something like this:
<a href="google.es" class="download-link">Download file</a>
<form>
...
</form>
<div class="footer"></div>
The idea is to move the link within the class "footer" through SCSS. I am a newbie in the layout and I can not find the form. I suppose I could do it through the backend of the page, but I leave that as a last resort. Thank you very much everyone.