Web Development Coding a marquee

CyberGod

Administrator
Staff member
Admin
Moderator
Joined
Dec 23, 2021
Messages
825
Hellcoins
♆27,482
Profile Music
Telegram
Before we get into the juicy sex of this post, what is a marquee?
A marquee, aside from being a paint brand, is scrolling text inside of HTML.

What does HTML stand for?
Hyper text markup language.

If you have any questions leave a reply to this post, I might be able to help you.

Code:
Code:
<marquee class="html-marquee" direction="-" scrollamount="-">

So the beef of this code would be marked with the hyphen ( - ), the direction can only be one of four ( Up, left, down, or right ), and the scrollamount can be any number you wish ( I recommend an eight or a ten ).

Ex:
Code:
Code:
<marquee class="html-marquee" direction="left" scrollamount="8">

You're not done yet, don't close the marquee tag. Before you do make sure to put your message after the end of the first part ( > ).

Ex:
Code:
Code:
<marquee class="html-marquee" direction="left" scrollamount="8">Hello, Code community! :D. cybergod was here.

After you put your message in, type
Code:
Code:
<br/>
( This is all off memory, so please don't mind too much if I can't remember what a tag is for, etc.. )

Now you may close the marquee with
Code:
Code:
</marquee>
.
When you're finished it should look something like this:
Code:
Code:
<marquee class="html-marquee" direction="left" scrollamount="8">Hello, Code community! :D. cybergod was here.<br/></marquee>

Once more if you have any questions, comments leave them as a reply, and please don't bug me about this being "basic html" or "noobish", I know it is but I couldn't find something to do a thread on, so I settled on marquees
 
Top