how to use marquee tag.. step by step process and example..
kindlyspammers stay away
Answers
.❤❤>✅✅‼‼‼‼‼‼‼
Short notes on Marquee tag:
(i) It is used to insert a scrolling area of text.
(ii) It is a container tag.
(iii) This feature is obsolete.
Syntax:
<marquee>Fill it up with some content</marquee>
Examples:
The marquee tag attributes are:
(1)
behavior - It indicates how the text content scroll. {scroll, slide, alternate}
<marquee behavior= "scroll">Welcome to brainly.in</marquee>
(2)
direction - Sets the direction of the scrolling.{left,right,up,down}
<marquee direction="up">Text scroll from bottom to top</marquee>
(3)
bgcolor - Sets the background color.
<marquee bgcolor="red">The background color will be red</bgcolor>
(4)
Width and height --- Sets them in pixels or percentage value.
<marquee width="200" height="100">
(5)
scrollamount - sets the scroll speed.
<marquee scrollamount="5">Welcome to hell</marquee>
(6)
scrolldelay - Sets the amount of delay in milliseconds.
<marquee scrolldelay="100">Welcome to heaven</marquee>
(7)
loop - Sets the number of times the marquee will scroll.
<marquee loop="2"> Text will be scrolled for 2 times</marquee>
Hope it helps!