What you're describing is know as a '
Horizontal Rule'.
Your page needs to contain the <hr> tag
You'l also need to add css styling for it to you theme. The page I linked provides this code:
Code:
hr {
display: block;
margin-top: 0.5em;
margin-bottom: 0.5em;
margin-left: auto;
margin-right: auto;
border-style: inset;
border-width: 1px;
}
You can also add a width variable to the css to get the desired effect.