Sunday, 24 December 2017

Transparency of Images

Transparency of image code using HTML and CSS




Image:

Program:

<html>
<head>
<style type="text/css">
img{
 opacity:0.5;
}
</style>
</head>
<body>
<img src="20.png" />
</body>
</html>

OUTPUT:


No comments:

Post a Comment