How do you add scrolling text to HTML page?

1 answer

Answer

1018868

2026-09-07 19:30

+ Follow

I love using this code:

<marquee>Enter scrolling text here</marquee>

Put this code underneath the <body> tag:

<html>

<body>

<marquee>Enter scrolling text here</marquee>

</body>

</html>

Want to change the colour of the text?

<font face="arial" color="colour you want" size="8">

place that between <body> and <Marquee>

<html>

<body>

<font face="arial" color="colour you want" size="8">

<marquee>Enter scrolling text here</marquee>

</body>

</html>

ReportLike(0ShareFavorite

Copyright © 2026 eLLeNow.com All Rights Reserved.