Use div:
CSS
.line { display: inline-block; width: 100px; height: 1px; background-color: #000; }
h2 { display: inline-block; }
HTML
For the left horizontal:
<div class="line"></div>
<h2>Text Goes here</h2>
For the right horizontal:
<h2>Text Goes here</h2>
<div class="line"></div>
source
share