I was looking around but didn't find what I need. I have place to write only a html. (can't create JS or different file for css)
I want to put an image on the screen, to be able to change the image opacity, and also put text on the image.
I tried this:
<!DOCTYPE html>
<html>
<head>
<style>
body {
background-image: url("paper.gif");
opacity: 0.1;
}
</style>
</head>
<body>
<h1>Hello World!</h1>
</body>
</html>
But the opacity seems to be on the text and not on the image.
Can someone help me please? Thanks All!