Friends I think with the help of this page I can help you learning the html and some css designing...
For more help you can contact on Facebook

Friday 8 February 2013

Image Slider Using HTML and CSS only

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*/

No comments:

Post a Comment