I want to create slide show to display any images to limited space. And I don't want to use javascript. How to create slide show with html and css only?
Perhaps:
<a href="3.html"><img src="2.jpeg" alt="..."></a>
and so on.
Have a look at this slideshow example using HTML and CSS.
To make it not use javascript, you could just replace the mouseover for each Set (the tabs at the top) with HTML links...
<A HREF="section2.html" TARGET="content" TITLE="Slideshow slide 2">Section 2</A>
However, it really is easier to use javascript, and almost all browsers will have no problem with javascript. Is there a particular reason not to use it?
You can make a nice pages with HTML/CSS to show what you need and make a redirection between them with HTTP META refresh tag:
<meta http-equiv="refresh" content="2;url=http://...">
This way visitors would not need to click on links to navigate between pages, but would be automatically taken there after certain amount of time...
You can use 'marquee' tag to make a slide show with html.
http://www.carvia.net/avonslideshow.html - this url gives many examples of it