1792527-1.html (398B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <style> 5 .crisp-edges { 6 image-rendering: crisp-edges; 7 } 8 9 .pixelated { 10 image-rendering: pixelated; 11 } 12 13 .smooth { 14 image-rendering: smooth; 15 } 16 </style> 17 </head> 18 <body> 19 <img class="crisp-edges" src="dino.png" width="32" height="32"> 20 <img class="pixelated" src="dino.png" width="32" height="32"> 21 <img class="smooth" src="dino.png" width="32" height="32"> 22 </body> 23 </html>