<html>
<head>
<style>
.img-mask {
mask-image: url('https://webtutor.dev/images/logo.png');
mask-image: url('https://webtutor.dev/images/logo.png');
mask-size: 50%;
mask-size: 50%;
mask-repeat: no-repeat;
mask-repeat: no-repeat;
}
</style>
</head>
<body>
<h1>The mask-image Property</h1>
<div class="img-mask">
<img src="https://webtutor.dev/images/flower.jpg" alt="Computer" width="500" height="300">
</div>
</body>
</html>