You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
602 B

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width"/>
<style>
#text1 {
color: red;
background-color: black;
}
#text2 {
color: #ff0000;
background-color: #000000;
}
#text3 {
color: rgb(255, 0, 0);
background-color: rgb(0, 0, 0);
}
</style>
</head>
<body>
<h2 id="text1">Color Name: red</h2>
<hr>
<h2 id="text2">Hex(#): #ff0000</h2>
<hr>
<h2 id="text3">RGB: rgb(255, 0, 0)</h3>
</body>
</html>