I am creating a portfolio website for practice purpose.
index.html :
work.html :
In index.html, the three sections at bottom are images. On clicking either one, it redirects to work.html
In work.html , the three sections have separate ids as #website-container, #ui_ux-container & #business_cards-container. And the line is a normal <hr>
tag.
My question is, since work.html will be a long page, how can I redirect to a particular section from one page to another ?
I tried doing :
<a target="#website-container" href="work.html">
<img src="websites.png">
</a>
but this opened the work.html on a separate tab. how can I make it open in same tab and in that particular section ?