CSS Colors
How to add colors to html elements
<html>
<head>
<title>CSS Colors</title>
</head>
<body>
<div style="border:2px dotted red">
<h1 style="color:blue">CSS COLORS</h1>
<p style="color:rgb(165, 71, 71)">This is color code css color</h1>
<p style="color:#ee82ee">This is hex(hexadecimal) color code</p>
</div>
</body>
</html>
Last updated
Was this helpful?