<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>CSS3 Sepia Filter Effect</title> <style> img.complete-sepia { -webkit-filter: sepia(110%); /* Chrome, Safari, Opera */ filter: sepia(110%); } img.partial-sepia { -webkit-filter: sepia(40%); /* Chrome, Safari, Opera */ filter: sepia(40%); } /* Some CSS to beautify this example */ table td{ padding: 15px; text-align: center; } </style> </head> <body> <table> <tr> <td> <img src="examples/resources/dog.jpg" alt="dog"> </td> <td> <img class="partial-sepia" src="examples/resources/dog.jpg" alt="dog"> </td> <td> <img class="complete-sepia" src="examples/resources/dog.jpg" alt="dog"> </td> </tr> <tr> <td>Original Image</td> <td>sepia(40%)</td> <td>sepia(110%)</td> </tr> </table> </body> </html>