Result Size: 300 x 150
x
 
<!DOCTYPE html>
<html>
<style>
div {height:50px;width:100%;}
</style>
<body>
<h1>Кольори можна встановити, використовуючи значення RGB</h1>
<div style="background-color:rgb(255,0,0)"></div>
<div style="background-color:rgb(255,255,0)"></div>
<div style="background-color:rgb(0,255,0)"></div>
<div style="background-color:rgb(0,255,255)"></div>
<div style="background-color:rgb(0,0,255)"></div>
<h1 style="color:rgb(255,0,0)">Заголовок</h1>
<h1 style="color:rgb(255,255,0)">Заголовок</h1>
<h1 style="color:rgb(0,255,0)">Заголовок</h1>
<h1 style="color:rgb(0,255,255)">Заголовок</h1>
<h1 style="color:rgb(0,0,255)">Заголовок</h1>
</body>
</html>