1<style>
2 hr{
3 height: 1px;
4 background-color: #ccc;
5 border: none;
6 }
7</style>
8
1The <hr> tag in HTML stands for horizontal rule
2and is used to insert a horizontal rule or a thematic break in an HTML page
3to divide or separate document sections.
4The <hr> tag is an empty tag and it does not require an end tag.
1 <p>HTML is a language for describing web pages.....</p>
2
3<!--the hr tag stands for horizontal rule and will make a line across your page at that point-->
4 <hr>
5
6 <p>CSS defines how to display HTML elements.....</p>