Which attribute of <marquee> tag defines the direction of scrolling the content?
Answers
Answered by
2
Answer:
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.
Explanation:
ex= <!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 its help you
Mark me as brainliest
Have a nice day.
Similar questions