CSS - Image rendering
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
*{
text-align: center;
}
.thing{
width:400px;
image-rendering:pixelated; /*this will help to make your image have pixelated look*/
}
</style>
<title></title>
</head>
<body>
<img src="youtube-play.png" class="thing">
</body>
</html>
Comments
Post a Comment