Computer Science, asked by TbiaSamishta, 1 year ago

Explain marquee tag and its attributes with an explain .

Answers

Answered by sagar4784
4
this is a very special tag used in HTML document to give an extra effect on the string
Answered by ajaybosshoss
3

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.


<!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>

hope it helps.........

Similar questions