-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (22 loc) · 835 Bytes
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Photo Gallery</title>
<link rel="stylesheet" href="gallery.css">
<script src="gallery.js"></script>
</head>
<body>
<div id="image">
Hover over an image below to display here.
</div>
<img class="preview" alt="With My Boy" src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/389177/bacon2.JPG"
onmouseover="upDate(this)" onmouseout="unDo()">
<img class="preview" alt="Styling with a Bandana"
src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/389177/bacon.jpg" onmouseover="upDate(this)"
onmouseout="unDo()">
<img class="preview" alt="Young Puppy"
src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/389177/bacon3.jpg"
onmouseover="upDate(this)" onmouseout="unDo()">
</body>
</html>