<!DOCTYPEhtml><htmllang="en"><head><metacharset="utf-8"/><title>Image Gallery</title></head><body><h1>Snapshots</h1><ul><li><ahref="images/fireworks.jpg"title="a firework display">fireworks</a></li><li><ahref="images/coffee.png"title="a cup of coffee">coffee</a></li><li><ahref="images/rose.jpg"title="a red rose">rose</a></li><li><ahref="images/bigben.jpeg"title="the famouse clock">bigben</a></li></ul></body></html>
function showPic(whichpic){
var source = whichpic.getAttribute("href");
var placeholder = document.getElementById("placeholder");
placeholder.setAttribute("src",source);
}
function showPic(whichpic){
var source = whichpic.getAttribute("href");
var placeholder = document.getElementById("placeholder");
placeholder.setAttribute("src",source);
var text=whichpic.getAttribute("title");
var description=document.getElementById("description");
description.firstChild.nodeValue=text;
}
body {
font-family:"Helvetica","Arial",serif;
color:#333;
background-color:#ccc;
margin:1em 10%
}
h1 {
color:#333;
background-color:transparent;
}
a {
color:#c60;
background-color:transparent;
font-weight:bold;
text-decoration:none;
}
ul {
padding:0;
}
li {
float:left;
padding:1em;
list-style:none;
}
img {
display:block;
clear:both;
}