Сообщение от Блондинка
|
hex #008000, rgb 0,128,0 hsl 120,0,50
|
<html>
<head>
<style>
div {
width: 100px;
height: 40px;
margin: 10px;
}
</style>
</head>
<body>
<div style="background: #008000;"></div>
<div style="background: rgb(0, 128, 0);"></div>
<div style="background: hsl(120, 100%, 25%);"></div>
</body>
</html>