cara mengubah warna tag HR di html
<style>
hr{
height: 1px;
background-color: #ccc;
border: none;
}
</style>
Different Dragonfly
<style>
hr{
height: 1px;
background-color: #ccc;
border: none;
}
</style>
HTML color to text
<body>
<p style="color:#FF0000";>Red paragraph text</p>
</body>
<span style="font-size:20px;"></span>
<p style="color:blue;">This paragraph is blue.</p>
<body>
<!-- style color (hex color) + the text -->
<h1 style ="color: #000000; "> Apples <em>is a tech company</em></h1>
</body>
<p style="color: red;">This is paragraph in RED color</p>