I want to add a horizontal line in HTML between texts like shown in this screenshot. From this code, I get a line but not centered between the texts. How can I achieve this?
What I need is something like: Publication---------------------Method.
My code:
.horizontal{ display: inline-block; width: 100px; } <div class="col-sm-4"> <h4>Publication <hr class="horizontal"/>Method</h4> </div