Sunday, October 12, 2014

Select Your Favorite Color for Your Website

This is very simple post to display colors with codes.




Live DemoDownload Script




Please share your comments and feedback.Thanks.Please subscribe my updates via email.

Wednesday, October 8, 2014

Friday, October 3, 2014

Convert image color to black and white using CSS3

In this post I am going to show how to Convert image color to black and white using CSS3.grayscale filter is used to convert image color to black and white.



CSS Code

#img {
            -o-filter: grayscale(100%);
            -moz-filter: grayscale(100%);
            -webkit-filter: grayscale(100%);
            filter: grayscale(100%);
            }


To display images using HTML use the following code

HTML

<img src="yourimg.jpg" width="500" id="img"/>


Please share your comments and feedback.Thanks.Please subscribe my updates via email.

Display Socialmedia icons using Font awesome and CSS3