blob: 85c32ef1c057b2998fe669f08a3f7b8a6ba3d601 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!DOCTYPE html>
<html>
<head>
<style>
.smooth {
image-rendering: smooth;
}
</style>
</head>
<body>
<img class="smooth" src="dino.png" width="32" height="32">
<img class="smooth" src="dino.png" width="32" height="32">
<img class="smooth" src="dino.png" width="32" height="32">
</body>
</html>
|