hr tag in bootstrap code example
Example 1: how to change the color of the hr tag in html
<style>
hr{
height: 1px;
background-color: #ccc;
border: none;
}
</style>
Example 2: make bigger in boootstrap
<hr style="height:1px;border:none;color:#333;background-color:#333;" />