So I have a website and I\'m using a basic menu located at the top right corner of the screen. It\'s links are as follows:
| Home | Blog | Results | Pictures
There are various ways to do this. It depends what you have access to on the server. Possibly the simplest mechanism is server-side includes. You would just have a file that contains the menu and include it on every page.
You can also do this with every programming language in more or less elegant ways.
EDIT: The SSI is quite simple. You can just make a /header.html file, then do:
in the appropriate place.