png transparent background html code example
Example 1: png image background transparent css
body {
background-color: transparent;
}
Example 2: html make image transparent
img {
opacity: 0.5;
}
body {
background-color: transparent;
}
img {
opacity: 0.5;
}