Run

Tutorial With Example

Run your live code

 
14
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
           <title>CSS RGB values</title>
5
</head>
6
<body>
7
           <h1 style="background-color:rgb(255, 99, 71);">HTML</h1>
8
           <h1 style="background-color:#ff6347;">CSS</h1>
9
           <h1 style="background-color:hsl(9, 100%, 64%);">Java Script</h1>
10
​
11
           <h1 style="background-color:rgba(255, 99, 71, 0.5);">C</h1>
12
           <h1 style="background-color:hsla(9, 100%, 64%, 0.5);">C++</h1>
13
</body>
14
</html>