I want to be able to have text moving across my homepage repeatedly, what code do I need to do that?
thanks,
JohnD
I'm pretty sure you want to use the <marquee> tag. Just a warning this tag has been deprecated. Here is a link if you want to know all the attributes below is a basic sample.
HTH,
Aric
[html]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Marque e</title>
</head>
<body>
<marquee>Some Test Or Pictures Or</marquee>
</body>
</html>
[/html]
I wasn't going to say that, yes most designer stay away from the marquee. I could see if you had news, stock quotes, sports scores etc. using this technique.
Comment