(25)Gallery Code example in Javascript : <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html> <head> <title>Simple Photo Gallery with HTML and JavaScript</title> <style type="text/css"> body { background: #222; margin: 0; } .thumbnails img { height: 80px; border: 4px solid #555; padding: 1px; margin: 0 10px 10px 0; } .thumbnails img:hover { border: 4px solid #00ccff; cursor:pointer; } .preview img { border: 4px solid #444; padding: 1px; width: 800px; } </style> </head> <body> <div class="gallery" align="center"> <h3>Simple HTML Photo Gallery with JavaScript</h3> <div class="thumbnails"> <img onmouseover="preview.src=img1.src" name="img1" src="1.png" alt="" /> <img onmouseover="preview.src=im...