Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Lab07 Task 2</title>
  5. <link rel="stylesheet" href="styles/layout.css" type="text/css" />
  6. </head>
  7. <body>
  8. <h1>Photo Gallery</h1>
  9. <ul>
  10. <li><a href="images/fireworks.jpg" title="A fireworks display" onclick="showPic(this); return false">Fireworks</a></li>
  11. <li><a href="images/coffee.jpg" title="A cup of black coffee" onclick="showPic(this); return false">Coffee</a></li>
  12. <li><a href="images/rose.jpg" title="A red rose" onclick="showPic(this); return false">Rose</a></li>
  13. <li><a href="images/bigben.jpg" title="The famous clock" onclick="showPic(this); return false">Big Ben</a></li>
  14. </ul>
  15. <img id="placeholder" src="images/placeholder.gif" alt="my image gallery"/>
  16. <p id="description"> Choose an image from the above...</p>
  17. </body>
  18. <style>
  19.  
  20. </style>
  21. <script>
  22.  
  23. </script>
  24. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement