-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflower.html
More file actions
23 lines (22 loc) · 777 Bytes
/
Copy pathflower.html
File metadata and controls
23 lines (22 loc) · 777 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<<!DOCTYPE html>
<html>
<head>
<title>Flower Catalog</title>
</head>
<body>
<img src="freshorigins.jpg" width="80%"></img>
<a href="Abeliophyllum.html" style="position:absolute; top:100px">Abeliophyllum </a><br>
<a href="Ageratum.html" style="position:absolute; left:1165px;top:150px;">Ageratum </a>
<a href="Abeliophyllum.html" style="position:absolute;left:1165px;top:300px; ">guest book </a>
<img src="pot.gif" id="visibility" style="position:absolute;left:1165px;top:200px;" onclick="disappear()" />
<script type="text/javascript">
function disappear(){
document.getElementById("visibility").style.display='none';
setTimeout('appear()',1000)
}
function appear(){
document.getElementById("visibility").style.display='inline';
}
</script>
</body>
</html>