Marquee Properties in HTML

                                              Marquee Properties in HTML

Now , Here we describe about Marquee Properties.

Marquee :- Marquee is an important HTML tag which is used to create scrolling either it is image or                     Text. We can scroll Text or Image in any direction either it is Horizontally or Vertically.                       We can also control scrolling speed of text or an Image.

Let's have an Example
Here we set Direction from "Direction" and we set speed from "scrollamount".

<html>

<head>
    <title>Example for HTML Marquee Tag</title>
</head>

<marquee behavior="scroll" direction="up" scrollamount="1">
   Hyper Text Mark Up Language
</marquee>
<marquee behavior="scroll" direction="down" scrollamount="10">
    Hyper Text Mark Up Language
</marquee>
<marquee behavior="scroll" direction="right" scrollamount="40">
   Hyper Text Mark Up Language
</marquee>
<marquee behavior="scroll" direction="left" scrollamount="60">
  Hyper Text Mark Up Language
</marquee>

</html>

Comments

Popular Posts