how to change colors of horizontal lines in css code example
Example: how to change the color of the hr tag in html
<style>
hr{
height: 1px;
background-color: #ccc;
border: none;
}
</style>
<style>
hr{
height: 1px;
background-color: #ccc;
border: none;
}
</style>