what is marquee infinite slider html codes?
What is the marquee tag in HTML slider?
The Marquee HTML tag is a non-standard HTML element which is used to scroll a image or text horizontally or vertically. In simple words, you can say that it scrolls the image or picture and text up, down, left or right automatically.
You can easily do it using this code
sample: www.gozdemozdem.com
just above the footer page<<
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
</head>
<body>
<marquee behavior="scroll" bgcolor="FFFFFF" div align="center" direction="left" scrollamount="10" onmouseover="this.stop();" onmouseout="this.start();">
<img src="https://static.wixstatic.com/media/24871f_b8a97ce4442b46d18b7beac202c55694~mv2.png" alt="" width="auto" height="auto">
...
...
...
...
</marquee>
</body>
</html>