CSS3 ব্যবহার করে চিত্রগুলিতে সেপিয়া প্রভাব প্রয়োগ করতে, ফিল্টার সম্পত্তির জন্য সেপিয়া মান ব্যবহার করুন৷
উদাহরণ
কোডটি নিম্নরূপ -
<!DOCTYPE html> <html> <head> <style> img.demo { filter: sepia(100%); } </style> </head> <body> <h1>Learn Spring Framework</h1> <img src="https://www.tutorialspoint.com/spring/images/spring-mini-logo.jpg" alt="Spring Framework" width="160" height="150"> <h1>Learn Spring Framework</h1> <img class="demo" src="https://www.tutorialspoint.com/spring/images/spring-mini-logo.jpg" alt="Spring Framework" width="160" height="150"> </body> </html>
আউটপুট