Hi George616,
Use bootstrap to design the page. For line use <hr /> tag and apply style to it.
<style>
hr {
margin-top: 1rem;
margin-bottom: 1rem;
border: 0;
border-top: 1px solid rgba(0, 0, 0, 0.1);
}
</style>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" />
<p>
Text 1
<hr/>
Text 2
<hr class="mt-5 mb-5">
</p>
Demo