answersLogoWhite

0


Best Answer

MARQUEE tag in HTML is used to scroll a line of text or an image across the screen. This is one of the more annoying tags of HTML and if not used properly can be done in very bad taste. (Can you tell I am not a fan of this tag?)... Below is a simple example on how to make this happen and also the different attributes that you can you with it.

<MARQUEE>

Smasher! <IMG SRC="pics/smasher.gif" HEIGHT=25 WIDTH=25"> Smasher!

</MARQUEE>

This would show Smasher! followed by a pic of me followed by the text Smasher!...it would scroll this from right to left across the screen.

* BEHAVIOR * BGCOLOR * DIRECTION * HEIGHT * HSPACE * LOOP * SCROLLAMOUNT * SCROLLDELAY * VSPACE * WIDTH

User Avatar

Wiki User

14y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

9y ago

Marquee is a non-standard HTML tag that allows you to create a marquee in your webpage. It is best to not use it, because most browsers do not recognize the command. Here is an example of a complex marquee tag:

<marquee direction="down" width="250" height="200" behavior="alternate" style="border:solid">

<marquee behavior="alternate">

This text will bounce

</marquee>

</marquee>

This answer is:
User Avatar

User Avatar

Wiki User

9y ago

You can use marquee for head only also. You can do so by closing the marquee tag before the head closes.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you use marquee only for heading in HTML?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you make marquees on notepad using HTML?

Marquethis is the text for the HTML Marquee Place the Marquee tags into the document. There are many attributes you can use set the properties of the marquee.


What does the HTML code marquee mean?

Your text will move when you use it.


Which HTML tag does not use as an end tag?

You have to close everything with another tag such as openingtag:&lt;marquee&gt; closingtag:&lt;/marquee&gt;.


Can you centrally align the heading of the HTML document you created?

When you create an HTML document, you can include a heading on the page. Here is an example of how you can use HTML to center the heading: &lt;center&gt;&lt;h1&gt;Page Heading&lt;/h1&gt;&lt;/center&gt;.


What is the use of h1 tag in an HTML document?

It's used for heading, h1 stands for heading 1.


How does a person use a marquee code?

Someone can use a marquee code in different ways. One of the most common uses is using it as a HTML code which helps put features on a website including the scrolling feature.


How do you make a character move in HTML?

You cant in HTML. Try Javascript (however it is better if you use a picture editor like Macromedia Fireworks and save the image as .jpg), You can. You would have to program it though. I have some of the "text moving features" added to my personal HTML. You could do the same.


How do you make HTML banners?

If you mean a scrolling text banner, then you can use the Marquee tag. It is not a popular tag among web designers because scrolling text can look very tacky and get annoying. Not all browsers support the Marquee tag. It is one of Microsoft's tags, designed for Explorer. Here is a simple example of how to use it. &lt;Marquee&gt;This will give you scrolling text, in some browsers&lt;/Marquee&gt;


How can you put the marquee around the image in HTML?

In HTML 4.01, XHTML, and HTML 5, the proper way to add a border to an image is using a CSS declaration. img { border: 2px solid blue; } You could also put that as a style attribute, use a class or id CSS declaration, etc. In versions of HTML prior to 4.01, you added a border using the border attribute. &lt;img src="test.jpg" border="2"&gt; That code produces an image with a border 2 pixels wide. Note that CSS allows you to adjust the borders around an object separately, whereas this method does not allow that kind of distinction.


What is HTML-only?

All websites use HTML, but some sites use HTML in conjunction with one or more other coding languages like Javascript or CSS. HTML-only means it uses just the basic coding.


What is the tag used for scrollings in HTML?

You use the tag for scrolling in HTML.You use the tag for scrolling in HTML.You use the tag for scrolling in HTML.You use the tag for scrolling in HTML.You use the tag for scrolling in HTML.You use the tag for scrolling in HTML.You use the tag for scrolling in HTML.You use the tag for scrolling in HTML.You use the tag for scrolling in HTML.You use the tag for scrolling in HTML.You use the tag for scrolling in HTML.


Explain about marquee tag in HTML?

The Marquee tag allows you to have a scrolling text effect. Anything put between the opening and closing tags will scroll across the screen. A number of attributes that go with it and are useful include the following, which all use numbers.Scrollamount - the amount of pixels of each movementScrolldelay - the amount of time in milliseconds between each jump. (1000 is 1 second).Other attributes, with their values include:Behavior - Slide (cones in once and stops), Alternate(bounces back and forward), Scroll (default)Direction - Left, Right, Up, DownLoop - (How many times to scroll)BgcolorWidthHeightGenerally the Marquee tag is not a very popular tag amongst professional web designers as it is seen to be very tacky and annoying after a while. So it is best kept for simple and fun sites.