+ 3
Navigation in html
I know how to use the nav tag to link to an other site like contact or something. but how can i use the nav tag to navigate in the same site, like a button i can click on and then see the footer?
3 Antworten
+ 20
<a href=#foot>link</a>
<footer id=foot>Foot</footer>
+ 6
this is an example
https://code.sololearn.com/Wiu13tEQ723j/?ref=app
+ 6
Thanks guys!