-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (26 loc) · 1.27 KB
/
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
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Photo Gallery</title>
<link rel="stylesheet" href="css/gallery.css">
<script src = "js/gallery.js"></script>
</head>
<body onload="loaded()">
<div id = "image">
Hover over an image below to display here.
</div>
<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 = "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" src = "https://s3-us-west-2.amazonaws.com/s.cdpn.io/389177/bacon3.jpg" alt = "Young Puppy"
onmouseover = "upDate(this)" onmouseout = "unDo()" >
<img class = "preview" src = "https://intro-webdesign.com/v3/images/camp2b.jpg" alt = "Camp Michigania"
onmouseover = "upDate(this)" onmouseout = "unDo()" >
<img class = "preview" src = "https://intro-webdesign.com/v3/images/disneyb.jpg" alt = "Disney Land"
onmouseover = "upDate(this)" onmouseout = "unDo()" >
<img class = "preview" src = "https://intro-webdesign.com/v3/images/dqb.jpg" alt = "Popsicles"
onmouseover = "upDate(this)" onmouseout = "unDo()" >
</body>
</html>