Computer Science, asked by divayjot46, 1 year ago

write and any two attributes of marquee tag with their uses​

Answers

Answered by Talentedhero74
16
The HTML <marquee> tag is used for scrolling piece of text or image displayed either horizontally across or vertically down your web site page depending on the settings.

Example

 Live Demo<!DOCTYPE html> <html> <head> <title>HTML marquee Tag</title> </head> <body> <marquee>This is basic example of marquee</marquee> <marquee direction = "up">The direction of text will be from bottom to top.</marquee> </body> </html>

This will produce the following result −

Similar questions