0
Please how can I correctly add a relative link and absolute link on <footer> element
html
2 Respuestas
+ 7
<footer>
<a href="relative.html">Relative to current path</a>
<a href="/absolute.html">Relative to the root path (Absolute)</a>
</footer>
0
thank you miss valen H. it worked