-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtext-scroll.html
51 lines (51 loc) · 1.87 KB
/
text-scroll.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<html>
<head>
<title>Text Scroll</title>
</head>
<body bgcolor="green">
<center>
<table border="1" cellspacing="10" cellpadding="10" height="95%" width="100%" bgcolor="yellow">
<tr align="center">
<th bgcolor="cyan">
<marquee width="23%" direction="up" height="250px" scrollamount="5">
Hey! I'm going up.
</marquee>
</th>
<th bgcolor="pink">
<marquee width="23%" direction="down" height="250px" scrollamount="10">
Hey! I'm going down.
</marquee>
</th>
</tr>
<tr align="center">
<th bgcolor="pink">
<marquee width="97%" direction="right" height="250px" scrollamount="15">
<br>
<br>
<br>
<br>
<br>
<br>
<br>
Hey! I'm going right.
</marquee>
</th>
<th bgcolor="cyan">
<marquee width="97%" direction="left" height="250px" scrollamount="20">
<br>
<br>
<br>
<br>
<br>
<br>
<br>
Hey! I'm going left.
</marquee>
</th>
</tr>
</table>
<br>
<button><a href="index.html">Back to Home</a></button>
</center>
</body>
</html>