HTML CSS examples for CSS Property:opacity
add opacity to the H1 text
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> h1 {<!--from ww w . java 2 s.com--> color:Chartreuse; background:red; } </style> </head> <body> <h1>Lorem ipsum dolor sit amet, consect</h1> </body> </html>