When I open this HTML document in Chrome. The line that says "Line 2". How do I get it to align to the center too without starting a new paragraph tag.
<html>
<head>
<title>HTML page</title>
</head>
<body>
<h1 align=center> Heading </h1>
<hr width=50%>
<p align=center>Paragraph Line 1<br/> <hr width=25%> Line 2 </p>
<p align=center>New paragraph.</p>
</body>
</html>