23 lines
398 B
HTML
23 lines
398 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
.crisp-edges {
|
|
image-rendering: crisp-edges;
|
|
}
|
|
|
|
.pixelated {
|
|
image-rendering: pixelated;
|
|
}
|
|
|
|
.smooth {
|
|
image-rendering: smooth;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<img class="crisp-edges" src="dino.png" width="32" height="32">
|
|
<img class="pixelated" src="dino.png" width="32" height="32">
|
|
<img class="smooth" src="dino.png" width="32" height="32">
|
|
</body>
|
|
</html>
|