-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample59.htm
More file actions
executable file
·68 lines (61 loc) · 1.68 KB
/
example59.htm
File metadata and controls
executable file
·68 lines (61 loc) · 1.68 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html><head><title>Plug-in JavaScript: Example 59</title>
<script src="PJ.js"></script>
<script>Initialize()</script>
</head><body>
<table id='a' width='375' height='160'
cellpadding='0' cellspacing='0' bgcolor='black'>
<tr height='20'>
<td colspan='3'>
<font color='white' face='Verdana' size='5'>
<center>
<b>I'll Be Bach Music Store</b>
</center>
</font>
</td>
</tr>
<tr height='80'>
<td width='150' align='right'>
<img src='instruments.png'>
</td>
<td>
</td>
<td width='315' valign='middle'>
<center>
<font face='Verdana' color='yellow'>
<u>New! - Special Offers</u><br />
<u>View our Guestbook</u><br />
<u>Follow us on Twitter</u><br />
<u>Read our Blog</u>
</font>
</center>
</td>
</tr>
<tr height='60'>
<td colspan='3'>
<img id='a' src='piano.png' />
</td>
</tr>
</table>
<br /><br /><br />
<font face='Verdana'>
<center>
<font color='purple' size=5>
<b>The "I'll Be Bach" Music Store</b>
</font>
</center>
<br />
We pride ourselves in having the widest selection of instruments of
any music store, ranging from pianos, violins, flutes, and other
classical and band instruments, to the latest electric guitars,
keyboards, synthesizers and mixing equipment.
</font>
<script>
window.onload = function()
{
Position('a', FIX)
HoverSlide('a', 'top', '%50', 60, 300)
}
</script>