-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgallery.html
More file actions
34 lines (33 loc) · 1.01 KB
/
gallery.html
File metadata and controls
34 lines (33 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Image Gallery</title>
<link rel="stylesheet" href="styles/layout.css" type="text/css" media="screen" />
<script src="scripts/showpic.js"></script>
</head>
<body>
<h1>Snapshorts</h1>
<ul id="imagegallery">
<li>
<a href="images/blue.jpg" onclick="showPic(this);return false;"
title="A fireworks display">Fireworks
</a>
</li>
<li>
<a href="images/green.jpg" onclick="showPic(this);return false;"
title="A cup of black coffee">Coffee</a>
</li>
<li>
<a href="images/lightblue.jpg" onclick="showPic(this);return false;"
title="A red,red rose">Rose</a>
</li>
<li>
<a href="images/red.jpg" onclick="showPic(this);return false;"
title="The famous clock">Big Ben</a>
</li>
<img id="placeholder" src="images/drinks.gif" alt="my image gallery" />
</ul>
<p id="description" >Choose an image</p>
</body>
</html>