What is marquee? Write the syntax to insert marquee
Answers
Answered by
4
Answer:
The HTML <marquee> tag defines a scrolling text area in the HTML document that moves across the page in a horizontal or vertical direction. By default, text found within the <marquee> tag will scroll from right to left. The <marquee> tag has been deprecated in HTML5 and should no longer be used. It is recommended that you use CSS instead to create a similar scrolling effect. This tag is also commonly referred to as the <marquee> element
Syntax
In HTML, the syntax for the <marquee> tag is:
<body> <marquee direction="down" height="100" width="200" bgcolor="white">Scrolling text</marquee> </body>
Similar questions