marquee tag is used to put scrolling text in web page <marquee>50% offer</marquee> The text 50% offer will left to right by default we can set the text in any direction
The <marquee> is an HTML tag used to create a scrolling text or an image. Using Marquee tag in HTML we can make text/image scroll horizontally across or vertically down the web page. Syntax : Marquee tag starts with <marquee> and ends with </marquee> For e.g <html> <body> <marquee>A scrolling text .</marquee> </body> </html> Some attributes used with HTML tag are
1.behaviorscroll:It defines the scrolling type.
2.direction:It sets the direction for the scrolling content. Values:up down left right 3.hspace:It defines horizantal space around the marquee. Value:pixels 4.vspace:Specifies vertical space around the marquee. Value:pixels There also some other attributes of Marquee tag such as height,loop,scrolldelay,seconds..etc when we didn't use direction attribute of <marquee> element, the text scrolls from right to left. marquee> tag also supports the Global Attributes.
The marquee tag has opening (<marquee>) and closing (</marquee>) elements. Used to create a scrolling text vertically or horizontally and very easy to use. Example: <html> <body> <marquee>Write a text here to scroll horizontally</marquee> </body> </html>
1) html stand for markup text markup language. 2) The <marquee> element was used to identify text that should move across a defined section of a webpage in a horizontal or vertical direction. 3)The <marquee> is an HTML tag used to create a scrolling text or an image 4)You can make the text/image scroll horizontally across or vertically down the web page. 5)syntax :<marquee> (</marquee>) Example: <html> <body> <marquee>wellcome .</marquee> </body> </html>
The <marquee> is an HTML tag used to create a scrolling text or an image. You can make the text/image scroll horizontally across or vertically down the web page. Syntax : The <marquee> element comes in pairs. It means means that the tag has opening (<marquee>) and closing (</marquee>) elements. Example : <html> <body> <marquee>A scrolling text created with HTML Marquee element.</marquee> </body> </html>
1) html stand for markup text markup language. 2) The <marquee> element was used to identify text that should move across a defined section of a webpage in a horizontal or vertical direction. 3)The <marquee> is an HTML tag used to create a scrolling text or an image 4)You can make the text/image scroll horizontally across or vertically down the web page. 5)syntax :<marquee> (</marquee>) 6) Examle: <html> <body> <marquee>wellcome .</marquee> </body> </html>
Anything between <Marquee></Marquee> move in a specific direction . By Default it is Left-to-Right but can be changed from Right-to-Left,Top-to-Bottom and Bottom-to-Top. It can be used anywhere in the html document.
<marquee> tag is used to display a scrolling piece of text or image, either horizontally or vertically in your web page depending on the settings. you should provide the direction of the text to which it should slide the default one is left. to use other directions <marquee direction="right"/"up"/"down"> is used. Scrollamount is used to set the moving speed like <marquee scrollamount="20">
Marquee tag is used in order to scroll a particular text .It has many attributes of which direction,bgcolor are some. It can be used as <marquee direction="left"> type the text here</marquee>
it is used for scroll tha text or image or some thing left to right or right to left or top to bottum or bottum to top by the behehaviour property the marquee tag used with <marquee></marquee>
You can use the marquee tag in the body tag. The syntax for marquee tag is: <marquee>text comes here</marquee> For example: <marquee>this is the marquee </marquee> The attributes are: direction -values:up,down,left,right height and width values are given in pixels hspace in pixels defines the horizontal space around the marquee vspace in pixels defines the vertical space around the marquee