Code Editor Panel
Home
HTML Tutorial
HTML Colors
Run
HTML
<!DOCTYPE html> <html> <head> <title>Page Title</title> </head> <body> <p style="background-color:rgba(244, 128, 36)";> The background is orange</p> <p style="background-color:rgba(244, 128, 36, 0.5)";> Alpha value is added in RGB, the opacity effect in the background color </p> </body> </html>
Output