Create a webpage to display the following “scrolling message”. All the best , set the background colour to
pink, height to 100, width to 75, direction to left using marquee tag
Answers
Answered by
1
Explanation:
<body>
<marquee direction="left" height="100" width="75" bgcolor="pink">
Scrolling text
</marquee>
</body>
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.
Answered by
0
Explanation:
create a webpage to show a scrolling
Similar questions