Friends today Iwill tell you how to make a slide show on your web page using only html and CSS......
Here is the code..
This is the page index.html
<html>
<head>
<title>Slide Show</title>
<link rel="stylesheet" type="text/css" href="index.css">
</hrad>
<body>
<div id="slide">
<marquee behavior="alternate" scrollamount="8">
<img src="image pathand name">
<img src="image pathand name">
<img src="image pathand name">
</marquee>
</div>
</body>
</html>
and here is the css for above web page index.css
#slide
{
height:300px;
width:300px;
margin:auto;
}
/*make sure that the sizeof images should be 300*300in this case*/