HTML
1
2
<html>
3
<head>
4
<title>Hex Color Example</title>
5
</head>
6
<body>
7
<h2 style="background:#FF0000; color:#ffffff">Red</h2>
8
<h2 style="background:#00ff00">Green</h2>
9
<h2 style="background:#0000ff; color:#ffffff">Blue</h2>
10
<h2 style="background:#00ffff">Cyan</h2>
11
<h2 style="background:#000000; color:#ffffff">Black</h2>
12
</body>
13
</html>
CSS
โx
1
โ
JavaScript
1
1
โ
Output: