I want to create a site where there will be 5 buttons on the left that are images. When you click each, a larger image loads on the right side, you click next button the image corresponding to that button loads. How is this done? HTML CSS?
You could use javascript to cache the images when the page loads and then display them when the user clicks a link. You’ll need to use the Image Object and the onclick event handler. Google those and you’ll find some tutorials, I’m sure…
Another route would be to use a scripting language like PHP to output the right image depending on which link they clicked.