I am very new to web design and I would like help aligning p elements on a web page, just like Tab aligns things in a word processor. I have the following code:
.tiny-ps {
display: block;
}
.big-ps {
display: none;
}
div.summary-container {
border: 2px ridge;
width: 100%;
font-weight: normal;
background-color: #eaeaea;
}
p {
font-family: Tahoma, Arial, Helvetica;
}
p.highlight {
display: block;
color: #ffffff;
font-weight: bold;
text-align: center;
}
p.highlight:nth-of-type(odd) {
background-color: #800000;
}
p.highlight:nth-of-type(even) {
background-color: #800020;
}
@media screen and (min-width: 500px) {
div.summary-container {
margin: 10px 0px;
}
p {
font-size: 12pt;
margin-bottom: 5px;
margin-top: 5px;
}
p.normal {
display: inline;
margin-right: 2%;
font-size: 12pt;
}
p.highlight {
display: block;
margin: 2px 0px 2px 0px;
font-size: 12pt;
}
.billName {
display: block;
}
.Norm9 {
font-size: 8pt;
}
.tiny-ps {
display: none;
}
.big-ps {
display: inline-block;
}
}
<div class="summary-container">
<p class="highlight">Address Correction: 3</p>
<p class="highlight"><span class="tiny-ps">Exped/Cour NOT Sent-Shipping: 5</span><span class="big-ps">Expedited/Courier Orders NOT Sent to Shipping: 5</span></p>
<p class="highlight"><span class="big-ps">Pickup Orders Not Sent to Shipping: 1</span><span class="tiny-ps">Pickups Not Sent-Shipping: 1</span></p>
<p class="highlight"><span class="big-ps">Liner Orders Not Sent to Shipping: 1</span><span class="tiny-ps">Liners Not Sent-Shipping: 1</span></p>
<p class="normal">Orders Shipped Today: 0</p>
<p class="normal">Order Received: 14</p>
<p class="normal">Payment Declined: 6</p>
<p class="normal">Payment Authorized: 3</p>
<p class="normal">Mgt Hold: 6</p>
<p class="normal">Order Sent to Shipping: 3</p>
<p class="normal">Pending Mgt Approval for PMT: 4</p>
<p class="normal">HELP ME: 1</p>
<p class="normal"><span class="big-ps">Expedited/Courier Orders Sent to Shipping: 2</span><span class="tiny-ps">Exped/Courier Sent to Shipping: 2</span></p>
</div>
What I cannot seem to figure out is how to get the text in the paragraphs to line up with the text in the other paragraphs and how to get the numbers to line up with each other. I want to do this without having to use a table. I can change the markup a little and add class names, but I do not want to use a table. It would look something like this:

Can anybody help me with this? Thank you!