0
what is marquee tag and blackquote tag used for?
I need to know.
4 odpowiedzi
+ 4
the marquee tag is used for making sliding text
+ 4
The HTML <blockquote> tag is used for indicating long quotations (i.e. quotations that span multiple lines). It should contain only block-level elements within it, and not just plain text.
+ 2
<marquee> tag is not recommended at all: it's a non-standard element, and is not and was never supported in Html specifications ( classified as non-conforming feature in Html5 ).
We need to avoid use it, and if scrolling effects are really needed ( often not good idea for user experience ^^ ), we need to do it with CSS and/or JS...
0
Thanks for the information, visph and Chirag Bhansali.