Advertisement
Guest User

Untitled

a guest
Jul 29th, 2010
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.99 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "=//W3C//DTD XHTML 1/1/EN"
  2. "http://www.w3.org/TR/xhtml11/DTD/xhtml.11.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
  4. <head>
  5. <meta http-equiv="content-type" content="text/html"; charset="utf-8" />
  6. <title>Image Gallery</title>
  7. <script type="text/javascript" src="scripts/showPic.js"></script>
  8. <link rel="stylesheet" type="text/css" href="styles/styles.css" />
  9. </head>
  10. <body>
  11.     <h1>Snapshots</h1>
  12.     <ul id="imagegallery">
  13.         <li>
  14.             <a href="images/1.jpg" title="Image One">
  15.                 <img src="images/1_thumb.jpg" alt="Image One" />
  16.             </a>
  17.         </li>
  18.         <li>
  19.             <a href="images/2.jpg" title="Image Two">
  20.                 <img src="images/2_thumb.jpg" alt="Image Two" />
  21.             </a>
  22.         </li>
  23.         <li>
  24.             <a href="images/3.jpg" title="Image Three">
  25.                 <img src="images/3_thumb.jpg" alt="Image Three" />
  26.             </a>
  27.         </li>
  28.     </ul>
  29. </body>
  30. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement