I have a link on one page that needs to go to a different page, but load to a specific section on that other page.
I have done this before with bootstrap but they take a
I believe the example you've posted is using HTML5, which allows you to jump to any DOM element with the matching ID
attribute. To support older browsers, you'll need to change:
To the old format:
You'll then be able to navigate to /academics/page.html#timeline
and jump right to that section.
Also, check out this similar question.