Marquee in HTML
Marquee Using Text in HTML
<marquee scrollamount="30" direction="right" bgcolor="black" behavior="alternate" loop="4">
<font color="red" face="Arial Black" size="6">
Welcome to Compuhelp
</font>
</marquee>
<font color="red" face="Arial Black" size="6">
Welcome to Compuhelp
</font>
</marquee>
Marquee Using Image in HTML
<html>
<head>
<title>Marquee</title>
</head>
<body>
<marquee scrollamount="40" direction="right" bgcolor="black" behavior="alternate" loop="4">
<img src="Database.png" height="300" width="400" border="3" hspace="100" vspace="100">
</marquee>
</body>
</html>